ICU4N icon indicating copy to clipboard operation
ICU4N copied to clipboard

API: Rename public enum values, constants, and static fields to conform to .NET conventions

Open NightOwl888 opened this issue 4 years ago • 1 comments

For example:

public const SOME_VALUE = "theValue";

Should be converted to Pascal Case:

public const SomeValue = "theValue";

NightOwl888 avatar Sep 30 '19 21:09 NightOwl888