Thanks,
What about the Enum.Format method? Is there an alternative way to perform
this task:
[Flags]
public enum TypesToCompare
{
none = 0
option1 = 1
option2 = 2
option3 = 4
option4 = 8
}
-----snip------
string enums;
enumTypeToCompare = TypesToCompare.option4 + TypesToCompare.option2
enums = Enum.Format(enumTypeToCompare, TypesToCompare, "f");
the resulting string would yeild:
"4, 2"
Thanks,
Matt
"<ctacke/>" <ctacke_AT_OpenNETCF_com> wrote in message
news:%23Y%(E-Mail Removed)...
> Use OpenNETCF's SDF. It has the EnumEx class.
>
> www.opennetcf.org/sdf
>
> -Chris
>
>
>
> "ME" <(E-Mail Removed)> wrote in message
> news:K8-dnf3Sl9EVIRffRVn-(E-Mail Removed)...
>> What are the .NET Compact Framework Alternatives to Enum.Parse and
>> Enum.Format as they are not supported by the Compact Framework?
>>
>> Thanks,
>>
>> Matt
>>
>
>