string first = "hello_"; string second = "world"; /* Unite multiple strings to one new string*/ string third = String.Concat(first, second); // string third will be now "hello_world"