System.Xml.Schema.TypedObject.ListDValueEquals C# (CSharp) Méthode

ListDValueEquals() private méthode

private ListDValueEquals ( TypedObject other ) : bool
other TypedObject
Résultat bool
        private bool ListDValueEquals (TypedObject other) {
            for (int i = 0; i < this.Dim; i ++) {
                if (this.Dvalue[i] != other.Dvalue[i]) {
                    return false;
                }                
            }
            return true;
        }