If i have a property like this
[CLSCompliant(false)]
public uint Something { ... }
and want to write an alternative, i can not just write an overload as i would do for methods. But how should i name it? Is there some general way in the .NET libs?
public long SomethingAlternative { ... }