CSharp: AulaDemoDll.NamespaceA.ClassSemModificadores

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

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