namespace CuriousTabConsoleApplication { class Sample { public int func() { return 1; } public Single func() { return 2.4f ; } } class Program { static void Main(string[ ] args) { Sample s1 = new Sample(); int i; i = s1.func(); Single j; j = s1.func(); } } }
class Sample { static int i; int j; public void proc1() { i = 11; j = 22; } public static void proc2() { i = 1; j = 2; } static Sample() { i = 0; j = 0; } }
int[ , ] intMyArr = {{7, 1, 3}, {2, 9, 6}};
int[][][] intMyArr = new int[2][][];
Comments
There are no comments.Copyright ©CuriousTab. All rights reserved.