Antlr.Runtime.BitSet.SetSize C# (CSharp) Méthode

SetSize() private méthode

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