You can use string, StringBuilder, byte[], unsafe pointer, ...
With a string for example : strings - Accessing individual characters
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
How do I convert pointer to c# language to convert a C source to C#,
the code to convert
char *line
public static int parseaddress(char *line, fidaddr fid, char wild)
ffurther on'
line++;
char symbol = *line
How can it be a double ++ before the pointer?
You can use string, StringBuilder, byte[], unsafe pointer, ...
With a string for example : strings - Accessing individual characters
Hi @Castorix31
I get strange enoufhg the error Severity Code Description Project File Line Suppression State
Error CS0023 Operator '++' cannot be applied to operand of type 'string' WinDos D:\Users\Rinaldo\Documents\Visual Studio 2022\
string line
line++ does not work
Hi @Castorix31
I have indexed the string like: symbol = line[index++];
now another pointer question.
How to pass this
misc.getnum(&transport, &line)
You are great