using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter32 { /// /// Example01: Inductance of a Solenoid /// Find the inductance of a uniformly wound solenoid having N /// turns and length l. Assume that l is much longer than the radius /// of the windings and that the core of the solenoid is air. /// public class Example01 { public Example01() { } private string result; public string Result { get{return result;} } public void Compute() { result = "Read the book!"; } } }