-
Notifications
You must be signed in to change notification settings - Fork 63
Open
Labels
enhancementNew feature or requestNew feature or request
Description
since public fields are not allowed, this means one is forced to write setters and getters for every single member. Doing so is a lot of work, especially with structures with many fields.
Suggestion:
syntactig sugar for getters/setters, perhaps something similar to c#?
public class Person
{
public string Name { get; set; }
public int Age { get; set; }
}Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request