No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
4 Posted Topics
Hi all, I ve been seeking a tutorial,article etc. about 2D cliext::vector . These are using <cliext/vector> library and cliext namespace. At once i need 2d vector decleration and its erase method to remove all rows which are full of zeros. Any help 'll be greatly appreciated.
i asssume that you are using visual c++ . [CODE] *** YourArrayStructure.h ------------------------- public ref class YourArrayStructure { public : String ^name; float dataMember2; float dataMember3; YourArrayStructure() : dataMember2(0.0) , dataMember3(0.0) {} ~YourArrayStructure() {} }; *** main file : --------------- # include "YourArrayStructure.h" array<YourArrayStructure ^> ^arrayObject = gcnew array <YourArrayStructure>(4) …
Hi, If i have to use managed code with unmanaged code. What are the possible risks? Thanks in advance. [CODE] cliext::vector<int> ^vec = gcnew vector<int>(3); [/CODE]
Hi mates, I am using visual c++ . I need to remove those lines which are full of zeros. Here is the matrice[5,7] : [CODE] 2 2 9 8 7 3 4 [COLOR="Red"]0 0 0 0 0 0 0[/COLOR] 3 4 5 7 8 9 6 [COLOR="Red"] 0 0 0 …
The End.
sota