13.07.2015 Views

C# Language Specification - Willy .Net

C# Language Specification - Willy .Net

C# Language Specification - Willy .Net

SHOW MORE
SHOW LESS

You also want an ePaper? Increase the reach of your titles

YUMPU automatically turns print PDFs into web optimized ePapers that Google loves.

Chapter 17 Classes}public BitArray(int length) {if (length < 0) throw new ArgumentException();bits = new int[((length - 1) >> 5) + 1];this.length = length;}public int Length {get { return length; }}public bool this[int index] {get {if (index < 0 || index >= length) {throw new IndexOutOfRangeException();}return (bits[index >> 5] & 1 = length) {throw new IndexOutOfRangeException();}if (value) {bits[index >> 5] |= 1 > 5] &= ~(1

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!