Click here to Skip to main content
15,915,160 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: Cross Post. Please ignore [modified] Pin
iamstillalive8-May-08 10:12
iamstillalive8-May-08 10:12 
GeneralRe: Cross Post. Please ignore Pin
Dave Kreskowiak8-May-08 10:22
mveDave Kreskowiak8-May-08 10:22 
GeneralRe: Cross Post. Please ignore Pin
Dave Kreskowiak8-May-08 13:26
mveDave Kreskowiak8-May-08 13:26 
GeneralRe: Cross Post. Please ignore Pin
MarkB77712-May-08 23:38
MarkB77712-May-08 23:38 
GeneralRe: Cross Post. Please ignore Pin
leckey8-May-08 14:31
leckey8-May-08 14:31 
Questionbinding dataset to combobox Pin
rmfaizal6-May-08 9:44
rmfaizal6-May-08 9:44 
AnswerRe: binding dataset to combobox Pin
Dave Kreskowiak6-May-08 10:04
mveDave Kreskowiak6-May-08 10:04 
QuestionObject Handle passed as parameter Pin
Ciccio76-May-08 3:06
Ciccio76-May-08 3:06 
Hi,
I'm quite new to .NET framework, though I am quite experienced in C++.

I have this problem I can't seem to solve under .NET framework. I'm using VS2008, so the new syntax is used as well to describe it.
In short I wouldlike to pass a String object to a function that "fills" it with some calculated content, and then the string can be used by the callee with the new content. This can be done with simple passing by reference under "normal" C++, but not with .NET.

Something like this:

System::Void ParserCaller() {
  String ^name1, ^name2;

  FillThis(name1, name2);

  System::Console::WriteLine("1) {0}, 2) {1}", name1, name2);

}
System::Void FillThis(String ^name1, String ^name2) {
 name1 = "Anything calculated or retreived from some other source";
 name2 = "Anything calculated or retreived from some other source again";
}


As you see returning both strings as return parameter is not possible.

Is there a way to obtain the above with .NET object handles?

Thansk in advance.
AnswerRe: Object Handle passed as parameter Pin
Dave Kreskowiak6-May-08 3:50
mveDave Kreskowiak6-May-08 3:50 
QuestionRe: Object Handle passed as parameter [modified] Pin
Ciccio76-May-08 4:47
Ciccio76-May-08 4:47 
AnswerRe: Object Handle passed as parameter Pin
Dave Kreskowiak6-May-08 6:25
mveDave Kreskowiak6-May-08 6:25 
QuestionCustomizing Coloumns in DataGridView in VS 2008 Pin
AS@135-May-08 21:34
AS@135-May-08 21:34 
AnswerRe: Customizing Coloumns in DataGridView in VS 2008 Pin
Dave Kreskowiak6-May-08 8:20
mveDave Kreskowiak6-May-08 8:20 
GeneralGenerate table and add rows dynamically using JSON [modified] Pin
visala4-May-08 23:41
visala4-May-08 23:41 
GeneralRe: Generate table and add rows dynamically using JSON Pin
Christian Graus5-May-08 0:23
protectorChristian Graus5-May-08 0:23 
GeneralRe: Generate table and add rows dynamically using JSON Pin
visala5-May-08 0:43
visala5-May-08 0:43 
GeneralRe: Generate table and add rows dynamically using JSON Pin
Brady Kelly5-May-08 1:49
Brady Kelly5-May-08 1:49 
GeneralRe: Generate table and add rows dynamically using JSON Pin
visala5-May-08 2:22
visala5-May-08 2:22 
GeneralRe: Generate table and add rows dynamically using JSON Pin
Brady Kelly5-May-08 2:43
Brady Kelly5-May-08 2:43 
GeneralRe: Generate table and add rows dynamically using JSON Pin
visala5-May-08 3:38
visala5-May-08 3:38 
GeneralRe: Generate table and add rows dynamically using JSON Pin
Pete O'Hanlon5-May-08 8:58
mvePete O'Hanlon5-May-08 8:58 
QuestionNo of COM ports supported or connected... Pin
Member 36373454-May-08 22:38
Member 36373454-May-08 22:38 
Question.net framework 2.0 requirements Pin
Member 36373454-May-08 19:02
Member 36373454-May-08 19:02 
AnswerRe: .net framework 2.0 requirements Pin
Christian Graus4-May-08 19:28
protectorChristian Graus4-May-08 19:28 
AnswerRe: .net framework 2.0 requirements Pin
CodeItWell6-May-08 6:00
CodeItWell6-May-08 6:00 

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.