G
Guest
e.x.:
public __value enum DbTypes
{
String
Int32
Int64
Int16
Object
Guid
};
instead, I need to use
public __value enum DbTypes
{
string
int32
int64
int16
object
guid
};
Is there a way around this in c++ 7.X? If so, please show an example.
public __value enum DbTypes
{
String
Int32
Int64
Int16
Object
Guid
};
instead, I need to use
public __value enum DbTypes
{
string
int32
int64
int16
object
guid
};
Is there a way around this in c++ 7.X? If so, please show an example.