xamarin / binding-tools-for-swift

MIT License
160 stars 21 forks source link

[dynamo] #788

Open stephen-hawley opened 1 year ago

stephen-hawley commented 1 year ago

CSSimpleType has a number of public static accessors for common types that are in the form:

public static CSSimpleType SomeType { get { return tSomeType; } }

these can all be changed to:

public static CSSimpleType SomeType => tSomeType;

It's just neater.