using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter38 { /// /// Example06: A Compact Disc is a Diffraction Grating /// Light reflected from the surface of a compact disc /// is multicolored, as shown in Figure 38.20. The colors /// and their intensities depend on the orientation of the /// disc relative to the eye and relative to the light /// source. Explain how this works. /// public class Example06 { public Example06() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }