S
SteveK
I'm getting the error: "Cannot implicitly convert type
'MovesDBMigrate.MotionNameElementTypes' to 'int'"
for this line of code:
m_nameElementTableNames[MotionNameElementTypes.Character] =
"Tbl_NameCharacters";
Of course if I cast int to it, then it compiles, but if I have declared the
enum's type as int, why do I need to cast int to the value?
Thanks for any help...
'MovesDBMigrate.MotionNameElementTypes' to 'int'"
for this line of code:
m_nameElementTableNames[MotionNameElementTypes.Character] =
"Tbl_NameCharacters";
Of course if I cast int to it, then it compiles, but if I have declared the
enum's type as int, why do I need to cast int to the value?
Thanks for any help...