Click here to Skip to main content
15,916,835 members
Home / Discussions / C#
   

C#

 
GeneralRe: Serialport write / read to fast for the device Pin
pxp9-Sep-05 1:38
pxp9-Sep-05 1:38 
GeneralRe: Serialport write / read to fast for the device Pin
WillemM9-Sep-05 2:21
WillemM9-Sep-05 2:21 
GeneralRe: Serialport write / read to fast for the device Pin
pxp9-Sep-05 3:12
pxp9-Sep-05 3:12 
GeneralRe: Serialport write / read to fast for the device Pin
WillemM9-Sep-05 4:03
WillemM9-Sep-05 4:03 
GeneralRe: Serialport write / read to fast for the device Pin
pxp9-Sep-05 4:57
pxp9-Sep-05 4:57 
QuestionUsing strings to name an object Pin
Expert Coming8-Sep-05 12:23
Expert Coming8-Sep-05 12:23 
AnswerRe: Using strings to name an object Pin
Christian Graus8-Sep-05 12:28
protectorChristian Graus8-Sep-05 12:28 
GeneralRe: Using strings to name an object Pin
Expert Coming8-Sep-05 12:29
Expert Coming8-Sep-05 12:29 
GeneralRe: Using strings to name an object Pin
Christian Graus8-Sep-05 12:30
protectorChristian Graus8-Sep-05 12:30 
GeneralRe: Using strings to name an object Pin
Expert Coming8-Sep-05 12:34
Expert Coming8-Sep-05 12:34 
GeneralRe: Using strings to name an object Pin
Christian Graus8-Sep-05 12:58
protectorChristian Graus8-Sep-05 12:58 
GeneralRe: Using strings to name an object Pin
Expert Coming8-Sep-05 13:02
Expert Coming8-Sep-05 13:02 
GeneralRe: Using strings to name an object Pin
Christian Graus8-Sep-05 13:05
protectorChristian Graus8-Sep-05 13:05 
GeneralRe: Using strings to name an object Pin
Expert Coming8-Sep-05 13:07
Expert Coming8-Sep-05 13:07 
GeneralRe: Using strings to name an object Pin
Christian Graus8-Sep-05 13:10
protectorChristian Graus8-Sep-05 13:10 
GeneralRe: Using strings to name an object Pin
Expert Coming8-Sep-05 13:12
Expert Coming8-Sep-05 13:12 
GeneralRe: Using strings to name an object Pin
Christian Graus8-Sep-05 13:16
protectorChristian Graus8-Sep-05 13:16 
GeneralRe: Using strings to name an object Pin
Expert Coming8-Sep-05 13:19
Expert Coming8-Sep-05 13:19 
GeneralRe: Using strings to name an object Pin
Christian Graus8-Sep-05 13:20
protectorChristian Graus8-Sep-05 13:20 
GeneralRe: Using strings to name an object Pin
Expert Coming8-Sep-05 13:21
Expert Coming8-Sep-05 13:21 
GeneralRe: Using strings to name an object Pin
Christian Graus8-Sep-05 13:23
protectorChristian Graus8-Sep-05 13:23 
GeneralRe: Using strings to name an object Pin
Expert Coming8-Sep-05 13:26
Expert Coming8-Sep-05 13:26 
GeneralRe: Using strings to name an object Pin
Christian Graus8-Sep-05 13:34
protectorChristian Graus8-Sep-05 13:34 
QuestionModify a c# string passed in c++.net function Pin
firefoxrabbit8-Sep-05 9:29
firefoxrabbit8-Sep-05 9:29 
I have the following c++ declaration

static FT_STATUS FT_ListDevicesEx(String *DevicesList);
{
DevicesList = "Hello";
}

Inside this function I modify the DeviceList string, but when I return to my c# code the string is not changed.

in c# i use the following code to pass the string.

string a = "12345";
FTDI.FT_ListDevicesEx(a);

When I arrive in ListDevicesEx the DevicesList string is 12345, then is modified in Hello, but at return in c# a = 12345 again!

What is the solution ?

Best regards.

AnswerRe: Modify a c# string passed in c++.net function Pin
John Fisher8-Sep-05 9:50
John Fisher8-Sep-05 9:50 

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.