D
dotnetchic
Can someone explain to me the difference between static_cast<T>(v) and
(what's the term for it?) old-style C cast?
UINT value1 = 0;
int value2 = (int)value1;
int value2 = static_cast<int>(value1);
TIA,
Sharon
(what's the term for it?) old-style C cast?
UINT value1 = 0;
int value2 = (int)value1;
int value2 = static_cast<int>(value1);
TIA,
Sharon