Cosmos/source/IL2CPU.Tests/Tests/SimpleStaticField/SimpleStaticField.cs
2007-10-06 08:53:51 +00:00

15 lines
No EOL
241 B
C#

using System;
class ConsoleDrv
{
public static int SupposedLength = 5;
public static string TheString = "Hello";
static int Main()
{
if (TheString.Length == SupposedLength) {
return 0;
} else {
return 1;
}
}
}