using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter34 { /// /// Example02: Fields on the Page /// Estimate the maximum magnitudes of the electric /// and magnetic fields of the light that is incident /// on this page because of the visible light coming from /// your desk lamp. Treat the bulb as a point source of /// electromagnetic radiation that is 5% efficient at /// transforming energy coming in by electrical transmission /// to energy leaving by visible light. /// public class Example02 { public Example02() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }