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

Managed C++/CLI

 
AnswerRe: What is Difference between Managed C++, C++/CLI and C++.Net Pin
Richard MacCutchan5-Feb-11 5:28
mveRichard MacCutchan5-Feb-11 5:28 
QuestionRe: What is Difference between Managed C++, C++/CLI and C++.Net Pin
Pranit Kothari5-Feb-11 5:59
Pranit Kothari5-Feb-11 5:59 
AnswerRe: What is Difference between Managed C++, C++/CLI and C++.Net Pin
Richard MacCutchan5-Feb-11 21:16
mveRichard MacCutchan5-Feb-11 21:16 
GeneralRe: What is Difference between Managed C++, C++/CLI and C++.Net Pin
Pranit Kothari6-Feb-11 3:20
Pranit Kothari6-Feb-11 3:20 
AnswerRe: What is Difference between Managed C++, C++/CLI and C++.Net Pin
John Schroedl5-Feb-11 8:02
professionalJohn Schroedl5-Feb-11 8:02 
GeneralRe: What is Difference between Managed C++, C++/CLI and C++.Net Pin
Pranit Kothari5-Feb-11 17:44
Pranit Kothari5-Feb-11 17:44 
GeneralRe: What is Difference between Managed C++, C++/CLI and C++.Net Pin
John Schroedl6-Feb-11 6:41
professionalJohn Schroedl6-Feb-11 6:41 
Questionsplit function Pin
ehsan161804-Feb-11 19:04
ehsan161804-Feb-11 19:04 
<b>Hi

I need help...

I have an array of string private variable List<String^>^ CalculateGreeks_; having property for get and set List&lt;String^&gt;^ CalculateGreeks() in a class CArgsRequestCredential,

I want to put these variables

PV,Delta,Vega

in my local object

<b>ReqCredObj_ = gcnew Args::CArgsRequestCredential();</b>

first i need to split strings saving each string in a variable and then storing variables in the list..

my code is

List<String^>^ CalculateGreeks1 = gcnew List<String^>();
for(int i = 0 ; i <= LocalArray->GetUpperBound(0);i++)
{
//
//CalculateGreeks1->Add(ii);

String^ Test = Convert::ToString(LocalArray->GetValue(i,0));
array <String ^>^ strings = Test->Split(',');
//ii = gcnew List<String^>^ CalculateGreeks_();
//ii->CalculateGreeks = Convert::ToString(strings);

// CalculateGreeks1->Add(strings);
// ReqCredObj_->CalculateGreeks = Convert::ToString(LocalArray->GetValue(0,1));
}

but my logic is not giving correct values



kindly help
QuestionWhy Multiple projects Pin
Pranit Kothari4-Feb-11 8:28
Pranit Kothari4-Feb-11 8:28 
AnswerRe: Why Multiple projects Pin
Hans Dietrich4-Feb-11 9:23
mentorHans Dietrich4-Feb-11 9:23 
GeneralRe: Why Multiple projects Pin
Pranit Kothari5-Feb-11 4:22
Pranit Kothari5-Feb-11 4:22 
GeneralRe: Why Multiple projects Pin
Albert Holguin5-Feb-11 16:20
professionalAlbert Holguin5-Feb-11 16:20 
AnswerRe: Why Multiple projects Pin
jschell4-Feb-11 9:48
jschell4-Feb-11 9:48 
GeneralRe: Why Multiple projects Pin
Pranit Kothari5-Feb-11 4:22
Pranit Kothari5-Feb-11 4:22 
GeneralRe: Why Multiple projects Pin
jschell5-Feb-11 7:00
jschell5-Feb-11 7:00 
GeneralRe: Why Multiple projects Pin
Pranit Kothari5-Feb-11 17:42
Pranit Kothari5-Feb-11 17:42 
QuestionRequired msvcrt.pdb 7.0.2600.5512 Pin
ptr_Electron4-Feb-11 2:47
ptr_Electron4-Feb-11 2:47 
AnswerRe: Required msvcrt.pdb 7.0.2600.5512 Pin
John Schroedl4-Feb-11 5:19
professionalJohn Schroedl4-Feb-11 5:19 
AnswerRe: Required msvcrt.pdb 7.0.2600.5512 Pin
Hans Dietrich4-Feb-11 9:30
mentorHans Dietrich4-Feb-11 9:30 
QuestionCLI and Visual Studio 2008: IntelliSense Does not work Pin
Joschwenk6663-Feb-11 5:07
Joschwenk6663-Feb-11 5:07 
AnswerRe: CLI and Visual Studio 2008: IntelliSense Does not work Pin
John Schroedl3-Feb-11 8:45
professionalJohn Schroedl3-Feb-11 8:45 
QuestionHow to cancel console application? Pin
piul31-Jan-11 5:41
piul31-Jan-11 5:41 
AnswerRe: How to cancel console application? Pin
Luc Pattyn31-Jan-11 6:00
sitebuilderLuc Pattyn31-Jan-11 6:00 
GeneralRe: How to cancel console application? Pin
piul31-Jan-11 21:11
piul31-Jan-11 21:11 
AnswerRe: How to cancel console application? Pin
Luc Pattyn1-Feb-11 3:04
sitebuilderLuc Pattyn1-Feb-11 3:04 

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.