Difference between revisions of "CSharp: AulaDemoDll.NamespaceA.ClassInternal"
From AdonaiMedrado.Pro.Br
(New page: <code lang="csharp"> using System; namespace AulaDemoDll.NamespaceA { internal class ClassInternal { private int pCampo; public int Campo { get...) |
(No difference)
|
Latest revision as of 12:03, 11 November 2008
using System; namespace AulaDemoDll.NamespaceA { internal class ClassInternal { private int pCampo; public int Campo { get { return pCampo; } set { pCampo = value; } } public ClassInternal() { } } }