Suppose I have this code;
new List<Int32>().Add(Int32.Parse(Console.ReadLine()));
Could I have access in any way to the number I entered in the list? Not having an object as such, I do not know if something like that would be possible ...
Thanks