using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter38 { /// /// Example04: Resolution of the Eye /// Estimate the limiting angle of resolution for /// the human eye, assuming its resolution is limited /// only by diffraction. /// public class Example04 { public Example04() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }