inighthawki
Newcomer
- Joined
- Nov 29, 2005
- Messages
- 14
in vb.net, if i wanted to convert types, i could use directcast and return a value from say an object:
Dim AL As ArrayList
AL = DirectCast(BinaryFormatter.Deserialize(FileStream), ArrayList)
and it could convert it to an arraylist, im trying to do the same in C++, but apparently C++ doesnt have the directcast function, and its not under the convert functions :System::Convert::???)
any help appreciated, thx in advance
Dim AL As ArrayList
AL = DirectCast(BinaryFormatter.Deserialize(FileStream), ArrayList)
and it could convert it to an arraylist, im trying to do the same in C++, but apparently C++ doesnt have the directcast function, and its not under the convert functions :System::Convert::???)
any help appreciated, thx in advance