T
Tony Johansson
Hello!
Why is it possible to use an object in the writeLine method see below when
it's actually an object. In this example testing is an object and
not a string.
How does the WriteLine method know that it is a string to be written.
object testing = "Testing";
Console.WriteLine(testing);
//Tony
Why is it possible to use an object in the writeLine method see below when
it's actually an object. In this example testing is an object and
not a string.
How does the WriteLine method know that it is a string to be written.
object testing = "Testing";
Console.WriteLine(testing);
//Tony