Emon,   void foo(int A, int B, int C) { ... }  void foo(string A, string B, string C) { ... }  for(int I = 0; I < 1000000; I++) { static string A, B, C; foo(A, B, C); }   This example you've used above is an example of polymorphism, but it's not t...  
[Read More]