public override bool Equals(object o)
        {
            TemplateKey other = o as TemplateKey;

            if (other != null)
            {
                return(other.GetType() == this.GetType() && other.DataType == this.DataType);
            }

            return(false);
        }
Exemple #2
0
 protected TemplateKey(TemplateKey.TemplateType templateType, object dataType)
 {
     this.DataType = dataType;
 }
Exemple #3
0
 protected TemplateKey(TemplateKey.TemplateType templateType)
 {
 }