這可能是最好的例子。我有一個屬性的枚舉: public enum MyEnum {
[CustomInfo("This is a custom attrib")]
None = 0,
[CustomInfo("This is another attrib")]
ValueA,
[CustomInfo("This has an extra fl
我想大家都看過類似的代碼: public void Server2ClientEnumConvert(ServerEnum server)
{
switch(server)
{
case ServerEnum.One:
return ClientEnum.ABC
//And so on.
相反,這個壞我們可以做財產以後類似的: pub