Click here to Skip to main content
15,890,123 members
Home / Discussions / Managed C++/CLI
   

Managed C++/CLI

 
AnswerRe: Managed to unmanaged debugger transition Pin
led mike27-Sep-06 8:09
led mike27-Sep-06 8:09 
GeneralRe: Managed to unmanaged debugger transition Pin
User 58385227-Sep-06 12:42
User 58385227-Sep-06 12:42 
QuestionQueryInterface in managed code Pin
lafleon26-Sep-06 15:16
lafleon26-Sep-06 15:16 
AnswerRe: QueryInterface in managed code Pin
User 58385226-Sep-06 16:38
User 58385226-Sep-06 16:38 
GeneralRe: QueryInterface in managed code Pin
lafleon26-Sep-06 17:43
lafleon26-Sep-06 17:43 
GeneralRe: QueryInterface in managed code Pin
User 58385226-Sep-06 17:48
User 58385226-Sep-06 17:48 
QuestionString.Split not functioning correctly? Pin
jmlsteele26-Sep-06 9:14
jmlsteele26-Sep-06 9:14 
AnswerRe: String.Split not functioning correctly? Pin
led mike26-Sep-06 10:11
led mike26-Sep-06 10:11 
jmlsteele wrote:
toBeSplit->Split(' ',3);

I don't know how you got that to compile but the following works as expected

array<wchar_t>^ delim = gcnew array<wchar_t> {' '};
String^ src = "1 2 3 4 5";
array<String^>^ a1 = src->Split( delim);
Console::WriteLine( String::Format("{0}", a1->Length));
a1 = src->Split( delim, 2);
Console::WriteLine( String::Format("{0}", a1->Length));


led mike

GeneralRe: String.Split not functioning correctly? Pin
jmlsteele26-Sep-06 12:05
jmlsteele26-Sep-06 12:05 
QuestionMarshal COM interface in C++ .NET multithreaded application Pin
lafleon26-Sep-06 9:00
lafleon26-Sep-06 9:00 
QuestionRecord File Pin
Rahul.RK25-Sep-06 21:28
Rahul.RK25-Sep-06 21:28 
QuestionDatabase Import/Export Pin
sbsrazor25-Sep-06 15:13
sbsrazor25-Sep-06 15:13 
QuestionDatabase connectivity Pin
amaneet24-Sep-06 22:46
amaneet24-Sep-06 22:46 
AnswerRe: Database connectivity Pin
Christian Graus24-Sep-06 23:36
protectorChristian Graus24-Sep-06 23:36 
QuestionRe: Database connectivity in CLI Pin
amaneet25-Sep-06 6:20
amaneet25-Sep-06 6:20 
AnswerRe: Database connectivity in CLI Pin
Christian Graus25-Sep-06 10:17
protectorChristian Graus25-Sep-06 10:17 
Questiontemplates Pin
User 58385224-Sep-06 21:28
User 58385224-Sep-06 21:28 
AnswerRe: templates Pin
led mike25-Sep-06 5:05
led mike25-Sep-06 5:05 
GeneralRe: templates Pin
User 58385225-Sep-06 12:57
User 58385225-Sep-06 12:57 
GeneralRe: templates WTF? Pin
led mike26-Sep-06 8:55
led mike26-Sep-06 8:55 
GeneralRe: templates WTF? Pin
User 58385226-Sep-06 12:21
User 58385226-Sep-06 12:21 
GeneralRe: templates WTF? Pin
led mike27-Sep-06 8:06
led mike27-Sep-06 8:06 
GeneralRe: templates WTF? Pin
User 58385227-Sep-06 12:51
User 58385227-Sep-06 12:51 
QuestionHow CreateDIBSection To Work??? Pin
javad_200524-Sep-06 9:36
javad_200524-Sep-06 9:36 
AnswerRe: How CreateDIBSection To Work??? Pin
Christian Graus24-Sep-06 11:23
protectorChristian Graus24-Sep-06 11:23 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.