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

Managed C++/CLI

 
QuestionExtract substring from string Pin
bigguru117-Sep-06 6:41
bigguru117-Sep-06 6:41 
AnswerRe: Extract substring from string Pin
zaccheus17-Sep-06 9:18
zaccheus17-Sep-06 9:18 
GeneralRe: Extract substring from string Pin
bigguru117-Sep-06 18:50
bigguru117-Sep-06 18:50 
QuestionHow to (re)size an array using Int64 Pin
zaccheus17-Sep-06 1:25
zaccheus17-Sep-06 1:25 
AnswerRe: How to (re)size an array using Int64 Pin
Christian Graus17-Sep-06 11:24
protectorChristian Graus17-Sep-06 11:24 
GeneralRe: How to (re)size an array using Int64 Pin
zaccheus17-Sep-06 12:51
zaccheus17-Sep-06 12:51 
GeneralRe: How to (re)size an array using Int64 Pin
Christian Graus17-Sep-06 13:19
protectorChristian Graus17-Sep-06 13:19 
AnswerRe: How to (re)size an array using Int64 Pin
Daniel Grunwald22-Sep-06 21:50
Daniel Grunwald22-Sep-06 21:50 
You can't resize it with an Int64, but you can create one with an Int64 initially:
long size = (long)uint.MaxValue + 10;
byte[] buffer = new byte[size];
Console.WriteLine(buffer.LongLength);

It will crash because it runs out of memory in a 32bit process, but on the 64bit version of the .NET Framework it should run correctly.



GeneralRe: How to (re)size an array using Int64 Pin
zaccheus23-Sep-06 1:20
zaccheus23-Sep-06 1:20 
Questionmorris pratt Pin
vtalau17-Sep-06 0:44
vtalau17-Sep-06 0:44 
Questionunmanaged -> managed call (again) Pin
Dragan Matic14-Sep-06 23:16
Dragan Matic14-Sep-06 23:16 
AnswerRe: unmanaged -> managed call (again) Pin
User 58385218-Sep-06 15:53
User 58385218-Sep-06 15:53 
Questioncan you tell me the function is use for? thanks Pin
fly4me14-Sep-06 16:20
fly4me14-Sep-06 16:20 
AnswerRe: can you tell me the function is use for? thanks Pin
Christian Graus14-Sep-06 19:30
protectorChristian Graus14-Sep-06 19:30 
QuestionString.Split - tutorial? samples? Pin
LudwigKeck14-Sep-06 16:16
LudwigKeck14-Sep-06 16:16 
AnswerRe: String.Split - tutorial? samples? Pin
baerten21-Sep-06 5:01
baerten21-Sep-06 5:01 
GeneralRe: String.Split - tutorial? samples? Pin
LudwigKeck21-Sep-06 15:02
LudwigKeck21-Sep-06 15:02 
QuestionWizard Control in vc++ express Pin
aguest14-Sep-06 7:41
aguest14-Sep-06 7:41 
AnswerRe: Wizard Control in vc++ express Pin
led mike14-Sep-06 8:11
led mike14-Sep-06 8:11 
Questionbios.h and terminos.h in Dev c++ compiler Pin
prashw13-Sep-06 21:55
prashw13-Sep-06 21:55 
AnswerRe: bios.h and terminos.h in Dev c++ compiler Pin
Christian Graus14-Sep-06 19:32
protectorChristian Graus14-Sep-06 19:32 
Questionalternate code for cp command Pin
vinod_kumar23313-Sep-06 1:40
vinod_kumar23313-Sep-06 1:40 
AnswerRe: alternate code for cp command Pin
Christian Graus14-Sep-06 19:35
protectorChristian Graus14-Sep-06 19:35 
GeneralRe: alternate code for cp command Pin
vinod_kumar23314-Sep-06 21:44
vinod_kumar23314-Sep-06 21:44 
GeneralRe: alternate code for cp command Pin
Christian Graus14-Sep-06 22:20
protectorChristian Graus14-Sep-06 22:20 

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.