diff --git a/Transpiler.md b/Transpiler.md index 18d8320..b3502ec 100644 --- a/Transpiler.md +++ b/Transpiler.md @@ -23,6 +23,7 @@ Features ### **C# Math** - float.MaxValue converted to value +- Converting modulo `a % b` to func `fmod( a, b )` ### **Generics** - Prepend/append type as parameter for per class, for all methods @@ -36,3 +37,8 @@ Features - Remove as expressions of interfaces `instance as InterfaceType` +### **C# Method Overloading** +- Throwing errors on method overloading + + +