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();
			}
		}