Browse Source
git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/trunk@1059 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61shortcuts
4 changed files with 59 additions and 0 deletions
@ -0,0 +1,23 @@ |
|||||||
|
// <file>
|
||||||
|
// <copyright see="prj:///doc/copyright.txt"/>
|
||||||
|
// <license see="prj:///doc/license.txt"/>
|
||||||
|
// <owner name="David Srbecký" email="dsrbecky@gmail.com"/>
|
||||||
|
// <version>$Revision$</version>
|
||||||
|
// </file>
|
||||||
|
|
||||||
|
using System; |
||||||
|
|
||||||
|
namespace Debugger.Tests.TestPrograms |
||||||
|
{ |
||||||
|
public class ArrayValue |
||||||
|
{ |
||||||
|
public static void Main() |
||||||
|
{ |
||||||
|
int[] array = new int[5]; |
||||||
|
for(int i = 0; i < 5; i++) { |
||||||
|
array[i] = i; |
||||||
|
} |
||||||
|
System.Diagnostics.Debugger.Break(); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue