I'd like to offer a list of constants within my DLL.
Example usage:
MyDLL.AddHouse( HouseName, MyDll.HOUSETYPES.Big)
MyDLL.AddHouse( HouseName, MyDll.HOUSETYPES.Small)
Tried:
public static readonly string[] HOUSETYPES =
{
"Big", "Small"
};
But that only gets me:
MyDLL.AddHouse( HouseName, MyDll.HOUSETYPES.ToString())
Any ideas? Thanks.