Antlr.Runtime.BitSet.SetSize C# (CSharp) 메소드

SetSize() 개인적인 메소드

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