+ 1
Confusion regarding order of the x and y value?
static void Main(string[] args) { int x = 10; double y = 20; Console.WriteLine("x = {0}; y = {1}", x, y); } // Output: x = 10; y = 20 in the above programme can we change the value of x to 1 and vice versa if not then why?
1 Odpowiedź
+ 9
we cannot change values because your method is static. it means it is declared as constant.