UdonSharp
UdonSharp copied to clipboard
An experimental compiler for compiling C# to Udon assembly
**Describe the bug in detail:** The behavior of C# and U# is different when you do an explicit cast. (ja: ) 明示的キャストを行った際にC#とU#で動作が異なります **Provide steps/code to reproduce the bug:** C# or...
**Feature Description:** As a continuation of [this](https://github.com/Merlin-san/UdonSharp/issues/34) it would be nice to have some sort of [Networked] attribute to use in your U# code. This will mean that we can...
**Feature Description:** Possible to add an custom attribute only for UdonSharp like `[NonNetworked]` that will renames internally the functions with an _ in front like `MyNonNetworkedMethod()` into `_MyNonNetworkedMethod()` ?
these changes enable support for expression-bodied constructors, such as: ```cs public class UserDefinedClass { private readonly int _value; // NOTE: this now compiles public CustomUserClass(int value) => _value = value;...