using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter38 { /// /// Example02: Relative Intensities of the Maxima /// Find the ratio of the intensities of the secondary /// maxima to the intensity of the central maximum for /// the single-slit Fraunhofer diffraction pattern. /// public class Example02 { public Example02() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }