0
Whats the difference between Console.WriteLine and Console.Writeline?
Am confused much, it seems like programming is very case sensitive...cause am a begginer and I like to tweak things up to see why they work or not but for the above question the difference was the L vs l in WriteLine and Writeline respectively. Why the earlier is true and the later is false...according to c# ... Help please đ„
2 Answers
+ 2
Console.WriteLine is syntactically correct. Console.Writeline is a syntax error.
Thanks that's what I needed to know....