using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter26 { /// /// Example10: A Partially Filled Capacitor /// A parallel-plate capacitor with a plate separation d has /// a capacitance in the absence of a dielectric. What is the /// capacitance when a slab of dielectric material of dielectric /// constant and thickness is inserted between the /// plates (Fig. 26.29a)? /// public class Example10 { public Example10() { } private string result; public string Result { get{return result;} } public void Compute() { result+="Read the book!"; } } }