using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter36 { /// /// Example08: The One that Got Away /// A small fish is swimming at a depth d below the /// surface of a pond (Fig. 36.22). What is the apparent /// depth of the fish, as view directly overhead? /// public class Example08 { public Example08() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }