Does C# allow method overloading, PHP style (__call)?
- by mr.b
In PHP, there is a special method named __call($calledMethodName, $arguments), which allows class to catch calls to non-existing methods, and do something about it.
Since most of classic languages are strongly typed, compiler won't allow calling a method that does not exist, I'm clear with that part.
What I want to accomplish (and I figured this…