xoom-net-actors icon indicating copy to clipboard operation
xoom-net-actors copied to clipboard

Support C# properties in generated proxies

Open tjaskula opened this issue 4 years ago • 0 comments

For example a protocol like that:

public interface IEntity1
    {
        ICompletes<Entity1State> DefineWith(string name, int age);

        ICompletes<Entity1State> Current { get; }

        void ChangeName(string name);

        void IncreaseAge();
    }

Will not generate the correct handler for Current property because they are not supported

tjaskula avatar Feb 13 '21 10:02 tjaskula