CSharp: AulaDemoDll.NamespaceC.ClassSealed

From AdonaiMedrado.Pro.Br
Revision as of 12:13, 11 November 2008 by Adonaimedrado (Talk | contribs) (New page: <code lang="csharp"> using System; namespace AulaDemoDll.NamespaceC { public sealed class ClassSealed { private int pCampo; public int Campo { ...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search
using System;
 
namespace AulaDemoDll.NamespaceC
{
    public sealed class ClassSealed
    {
        private int pCampo;
        public int Campo
        {
            get
            {
                return pCampo;
            }
            set
            {
                pCampo = value;
            }
        }
 
        public ClassSealed()
        {
 
        }
    }
}