System.Xml.Schema.BitSet.Dump C# (CSharp) Method

Dump() public method

public Dump ( System.StringBuilder bb ) : void
bb System.StringBuilder
return void
        public void Dump(StringBuilder bb) {
            for (int i = 0; i < count; i ++) {
                bb.Append( Get(i) ? "1" : "0");
            }
        }
#endif