using uCalcSoftware; var uc = new uCalc(); var t = new uCalc.Transformer(); // Set the description using the property setter syntax t.Description = "My Transformer"; // Get the description using the property getter syntax Console.WriteLine($"Description: {t.Description}");