예제 #1
0
 internal CountryCode(CountryCodeAdaptee Instance)
 {
     if (Instance.Value != null)
     {
         this.InternalObject = Instance;
     }
 }
예제 #2
0
        public override bool Equals(System.Object obj)
        {
            // If parameter is null return false.
            if (obj == null)
            {
                return(false);
            }

            // If parameter cannot be cast to Point return false.
            CountryCodeAdaptee p = obj as CountryCodeAdaptee;

            if ((System.Object)p == null)
            {
                return(false);
            }

            // Return true if the fields match:
            return((Value == p.Value) && (Label == p.Label));
        }