using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter37 { /// /// Example03: Interference in a Soap Film /// Calculate the minimum thickness of a soap-bubble film /// that results in constructive interference in the reflected /// light if the film is illuminated with light whose wavelength /// in free space is \lambda = 600 nm. /// public class Example03 { public Example03() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }