System.Xml.Schema.TypedObject.ListDValueEquals C# (CSharp) 메소드

ListDValueEquals() 개인적인 메소드

private ListDValueEquals ( TypedObject other ) : bool
other TypedObject
리턴 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;
        }