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
Use OpenNETCF's SDF. It has the EnumEx class.
www.opennetcf.org/sdf
-Chris
What are the .NET Compact Framework Alternatives to Enum.Parse and
Enum.Format as they are not supported by the Compact Framework?
Thanks,
Matt