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 { ... }
link|improve this question

76% accept rate
feedback

3 Answers

up vote 2 down vote accepted

I would suggest SomethingAsInt64 to explicitly indicate the behavioural difference.

link|improve this answer
Or maybe Something64 like Process class has – ordag Apr 1 '11 at 14:49
1  
Don't use language keywords (especially since the purpose of this is CLS compliance!) – Mark Sowul Apr 1 '11 at 14:57
Good point - edited! – Dan Puzey Apr 1 '11 at 14:58
feedback

Maybe do it the reverse way: make the complaint version "something" and the non-compliant as "SomethingUnsigned"

link|improve this answer
Hadn't thought of that. Good one. – ordag Apr 1 '11 at 15:04
feedback

SomethingCompliant meaning that it is compliant?

link|improve this answer
2  
Spoken as the consumer of an arbitrary class staring at an intellisense prompt: compliant with what? – Dan Puzey Apr 1 '11 at 14:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.