Foxoft.Ci.CiStringStorageType.Equals C# (CSharp) Method

Equals() public method

public Equals ( CiType obj ) : bool
obj CiType
return bool
        public override bool Equals(CiType obj)
        {
            CiStringStorageType that = obj as CiStringStorageType;
            return that != null && this.Length == that.Length;
        }
CiStringStorageType