CyrusBuilt.MonoPi.BitSet.TrimToSize C# (CSharp) 메소드

TrimToSize() 개인적인 메소드

Attempts to reduce internal storage used for the bits in this bit set. Calling this method may, but is not required to, affect the value returned by a subsequent call to the CyrusBuilt.MonoPi.BitSet.Size property.
private TrimToSize ( ) : void
리턴 void
		private void TrimToSize() {
			if (this._wordsInUse != this._bits.Length) {
				long[] copy = { };
				Array.Copy(this._bits, copy, this._wordsInUse);
				this._bits = copy;
				this.CheckInvariants();
			}
		}