using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter26 { /// /// Example02: The Cylindrical Capacitor /// A solid cylindrical conductor of radius a and charge Q /// is coaxial with a cylindrical shell of negligible thickness, /// radius b > a, and charge -Q (Fig.26.6a). /// Find the capacitance of this cylindrical capacitor /// if its length is l. /// public class Example02 { public Example02() { } private string result; public string Result { get{return result;} } public void Compute() { result+="Read the book!"; } } }