using uCalcSoftware; var uc = new uCalc(); using (var s = new uCalc.String("The quick brown fox.")) { // Replace returns the modified String object, but also modifies it in-place s.Replace("brown", "red"); // Use implicit conversion to print the result Console.WriteLine(s); };