Open stephen-hawley opened 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.
CSSimpleType has a number of public static accessors for common types that are in the form:
these can all be changed to:
It's just neater.