using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter42 { /// /// Example09: Estimating the Energy of an X-Ray /// Estimate the energy of the characteristic x-ray /// emitted from a tungsten target when an electron drops /// from an M shell (n = 3 state) to a vacancy in the K /// shell (n = 1 state). /// public class Example09 { public Example09() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }