C#:
C#:
static class Module1
{
public static void Main()
{
for (index = 1; index <= GetCount(); index++) {
Console.WriteLine("For {0}", index);
}
Console.ReadKey();
}
public static int GetCount()
{
Console.WriteLine("GetCount");
return 10;
}
}
static class Module1
{
pub