Difference between revisions of "CSharp: AulaDemoDll.NamespaceC.ClassSealed"

From AdonaiMedrado.Pro.Br
Jump to: navigation, search
(New page: <code lang="csharp"> using System; namespace AulaDemoDll.NamespaceC { public sealed class ClassSealed { private int pCampo; public int Campo { ...)
 
(No difference)

Latest revision as of 12:13, 11 November 2008

using System;
 
namespace AulaDemoDll.NamespaceC
{
    public sealed class ClassSealed
    {
        private int pCampo;
        public int Campo
        {
            get
            {
                return pCampo;
            }
            set
            {
                pCampo = value;
            }
        }
 
        public ClassSealed()
        {
 
        }
    }
}