Antlr.Runtime.BitSet.SetSize C# (CSharp) Method

SetSize() private method

Sets the size of a set.
private SetSize ( int nwords ) : void
nwords int how many words the new set should be
return void
        private void SetSize( int nwords )
        {
            Array.Resize(ref _bits, nwords);
        }