How do you pass strings in C#?
How do you pass string variables as arguments to a method/procedure/function in a program written in C#?
feedback
|
or as variables:
| |||
|
feedback
|
|
The string class is immutable. So you can't do the following:
To get this to work you have to pass back the string:
Or Use a StringBuilder
Update after comment from KManOk, there is a third version using the ref keyword
| |||||
feedback
|
|
You mean a method like:
Then call like:
| |||
|
feedback
|
| |||
|
feedback
|
|
Just curious if you are asking this question because of string handling in other languages like Delphi? Strings in C# are immutable (as others have said) so any change to a string allocates memory for a "new" one and the "old" one will eventually be garbage collected. This means that the compiler won't generate code to make sure that the reference count is decremented when the method returns - or any of that cool stuff. You can also pass it by reference (see example 6)
but this won't make much difference if you are going to change the string inside the method (since strings are immutable). If you plan to make lots of changes to the passed string, it is better to use a | |||
|
feedback
|