using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter38 { /// /// Example01: Where Are the Dark Fringes? /// Light of wavelength 580 nm is incident on a slit /// having a width of 0.3 mm. The viewing screen is 2.0 m /// from the slit. Find the positions of the first dark /// fringes and the width of the central bright fringe. /// public class Example01 { public Example01() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }