using System; using L=Science.Physics.GeneralPhysics; namespace Serway.Chapter24 { /// /// Example07: A Cylindrically Symmetric Charge Distribution /// Find the electric field a distance r from a line of /// positive charge of infinite length and constant charge /// per unit length \lambda. /// E = 2 k_e \lambda / r /// public class Example07 { public Example07() { } private string result; public string Result { get{return result;} } public void Compute() { result+="Read the book!"; } } }