|
7 | 7 | #if !BUILDING_CORELIB_REFERENCE
|
8 | 8 | namespace System.Collections
|
9 | 9 | {
|
10 |
| - public sealed partial class BitArray : System.Collections.ICollection, System.Collections.IEnumerable, System.ICloneable |
11 |
| - { |
12 |
| - public BitArray(bool[] values) { } |
13 |
| - public BitArray(byte[] bytes) { } |
14 |
| - public BitArray(System.Collections.BitArray bits) { } |
15 |
| - public BitArray(int length) { } |
16 |
| - public BitArray(int length, bool defaultValue) { } |
17 |
| - public BitArray(int[] values) { } |
18 |
| - public int Count { get { throw null; } } |
19 |
| - public bool IsReadOnly { get { throw null; } } |
20 |
| - public bool IsSynchronized { get { throw null; } } |
21 |
| - public bool this[int index] { get { throw null; } set { } } |
22 |
| - public int Length { get { throw null; } set { } } |
23 |
| - public object SyncRoot { get { throw null; } } |
24 |
| - public System.Collections.BitArray And(System.Collections.BitArray value) { throw null; } |
25 |
| - public object Clone() { throw null; } |
26 |
| - public void CopyTo(System.Array array, int index) { } |
27 |
| - public bool Get(int index) { throw null; } |
28 |
| - public System.Collections.IEnumerator GetEnumerator() { throw null; } |
29 |
| - public bool HasAllSet() { throw null; } |
30 |
| - public bool HasAnySet() { throw null; } |
31 |
| - public System.Collections.BitArray LeftShift(int count) { throw null; } |
32 |
| - public System.Collections.BitArray Not() { throw null; } |
33 |
| - public System.Collections.BitArray Or(System.Collections.BitArray value) { throw null; } |
34 |
| - public System.Collections.BitArray RightShift(int count) { throw null; } |
35 |
| - public void Set(int index, bool value) { } |
36 |
| - public void SetAll(bool value) { } |
37 |
| - public System.Collections.BitArray Xor(System.Collections.BitArray value) { throw null; } |
38 |
| - } |
39 | 10 | public static partial class StructuralComparisons
|
40 | 11 | {
|
41 | 12 | public static System.Collections.IComparer StructuralComparer { get { throw null; } }
|
@@ -584,6 +555,38 @@ void System.Collections.IEnumerator.Reset() { }
|
584 | 555 | }
|
585 | 556 | }
|
586 | 557 | #endif // !BUILDING_CORELIB_REFERENCE
|
| 558 | +namespace System.Collections |
| 559 | +{ |
| 560 | + public sealed partial class BitArray : System.Collections.ICollection, System.Collections.IEnumerable, System.ICloneable |
| 561 | + { |
| 562 | + public BitArray(bool[] values) { } |
| 563 | + public BitArray(byte[] bytes) { } |
| 564 | + public BitArray(System.Collections.BitArray bits) { } |
| 565 | + public BitArray(int length) { } |
| 566 | + public BitArray(int length, bool defaultValue) { } |
| 567 | + public BitArray(int[] values) { } |
| 568 | + public int Count { get { throw null; } } |
| 569 | + public bool IsReadOnly { get { throw null; } } |
| 570 | + public bool IsSynchronized { get { throw null; } } |
| 571 | + public bool this[int index] { get { throw null; } set { } } |
| 572 | + public int Length { get { throw null; } set { } } |
| 573 | + public object SyncRoot { get { throw null; } } |
| 574 | + public System.Collections.BitArray And(System.Collections.BitArray value) { throw null; } |
| 575 | + public object Clone() { throw null; } |
| 576 | + public void CopyTo(System.Array array, int index) { } |
| 577 | + public bool Get(int index) { throw null; } |
| 578 | + public System.Collections.IEnumerator GetEnumerator() { throw null; } |
| 579 | + public bool HasAllSet() { throw null; } |
| 580 | + public bool HasAnySet() { throw null; } |
| 581 | + public System.Collections.BitArray LeftShift(int count) { throw null; } |
| 582 | + public System.Collections.BitArray Not() { throw null; } |
| 583 | + public System.Collections.BitArray Or(System.Collections.BitArray value) { throw null; } |
| 584 | + public System.Collections.BitArray RightShift(int count) { throw null; } |
| 585 | + public void Set(int index, bool value) { } |
| 586 | + public void SetAll(bool value) { } |
| 587 | + public System.Collections.BitArray Xor(System.Collections.BitArray value) { throw null; } |
| 588 | + } |
| 589 | +} |
587 | 590 | namespace System.Collections.Generic
|
588 | 591 | {
|
589 | 592 | public static partial class CollectionExtensions
|
|
0 commit comments