7

Why developer of c# (Anders Hejlsberg) when developing (TypeScript) not implemented method overloading and interfaces' methods implementation with same names.

Comments
  • 1
    @g-m-f He could make different function names when compiling to js for overloaded functions.
  • 1
    @g-m-f At execution time the overloaded function "FUNC" would be "FUNC2" etc.
  • 1
    Yeah it would have to change the function name which might cause more problems than it solves.
Add Comment