Neither can I understand the book says that overloading methods is impossible with the help of ref
Although I did it
Another an = new Another(); int a = 0; an.SomeMethod(a); an.SomeMethod(ref a); class Another { public void SomeMethod(int a) { a = 1; } public void SomeMethod(ref int a) { a = 1; } } Maybe something is not understood?
