I have a Method invocation data collector on a C# class. One of the field is an enum type
public enum MemberType
{aa = 1001,
bb= 1002,
cc= 1003,
dd = 1004
}
I did the following way. But it doesn't work
toString ().Split (MobilePlatformType).[1].substring (int / 0, int / 10)
toString ().Split (MobilePlatformType).[1].substring (int / 0, int / 10)
I have a Method invocation data collector on a C# class. One of the field is an enum type
public enum MemberType
{aa = 1001,
bb= 1002,
cc= 1003,
dd = 1004
}
I did the following way. But it doesn't work
toString ().Split (MobilePlatformType).[1].substring (int / 0, int / 10)
toString ().Split (MobilePlatformType).[1].substring (int / 0, int / 10)
Any one on this forum who typecasted enums?
I tried with no ToString() and ToString()