using System; using System.Collections.Generic; using System.Linq; using System.Text; using V = Science.Mathematics.VectorCalculus; namespace VectorCalculus5Ed.Chapter7.Section2 { public class Example06 { public Example06() { } private string result; public string Result { get{return result;} } public void Compute() { result += "Read the textbook."; } } }