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