someString[someRandomIdx] = 'g';
that will give me an error,
how do I achieve the above?
Edit:
yes it is of type 'string'
that will give me an error, how do I achieve the above? Edit: yes it is of type 'string' |
|||||
|
|
If it is of type To achieve what you desire, you can use a
Update Why use a
|
|||||
|
|
C# strings are immutable. You should create a new string with the modified contents.
|
|||
|
|
|
Check out this article on how to modify string contents in C#. Strings are immutable so they must be converted into intermediate objects before they can be modified. |
|||
|
|