how to change a string variables value csharp

Code Example - how to change a string variables value csharp

                
                        /* just do the variable without the string part */
string variable = "unchanged";
variable = "changed";
// ez as that now we changed the value from unchanged to changed hope this helpped