CSharp: AulaDemoDll.NamespaceA.ClassInternal

From AdonaiMedrado.Pro.Br
Revision as of 12:03, 11 November 2008 by Adonaimedrado (Talk | contribs) (New page: <code lang="csharp"> using System; namespace AulaDemoDll.NamespaceA { internal class ClassInternal { 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
{
    internal class ClassInternal
    {
        private int pCampo;
        public int Campo
        {
            get
            {
                return pCampo;
            }
            set
            {
                pCampo = value;
            }
        }
 
        public ClassInternal()
        {
        }
    }
}