using System; using System.Collections.Generic; using System.Linq; using System.Text; using L = Science.Mathematics.LinearAlgebra; namespace Strang3Ed.Chapter07.Section1 { public class Example05 { public Example05() { } private string result; public string Result { get { return result; } } public void Compute() { result += "Read the textbook."; } } }