Monday, 26 August 2013

Overloading two functions with object and list parameter – stackoverflow.com

Overloading two functions with object and list parameter – stackoverflow.com

Consider this code: static void Main(string[] args) { Log("Test");//Call
Log(object obj) Log(new List<string>{"Test","Test2"});;//Also Call
Log(object obj) } public …

No comments:

Post a Comment