diff --git a/Transpiler.md b/Transpiler.md index 2140510..86665d7 100644 --- a/Transpiler.md +++ b/Transpiler.md @@ -15,12 +15,18 @@ Features - Create wrapper class for single file enum `enum RJ_TriggerMode` to `class_name RJ_TriggerModeEnums` - Create prefixed names for Rokojori Object Types -### **C# System Types** +### **C# List/Array** - List/Array => Array: `Length/Count` to `size()`, `Add` to `append` ,`Remove` to `erase` etc -- Dictionary => Dictionary[K,V] -- HashSet => Dictionary[K,true] -- string: `Length` to `length()` +### **C# Dictionary** +- Dictionary => Dictionary[K,V] + +### **C# HashSet** +- HashSet => Dictionary[K,true] + +### **C# String** +- string: `Length` to `length()` +- Automatic string conversion of number/string add binary expressions `n+s` to `str(n)+s` ### **Math** - float.MaxValue converted to value