Add() public method

public Add ( int el ) : void
el int
return void
Exemplo n.º 1
0
        public static BitSet of(int el)
        {
            BitSet s = new BitSet(el + 1);

            s.Add(el);
            return(s);
        }
Exemplo n.º 2
0
 public static BitSet of(int el)
 {
     BitSet s = new BitSet(el + 1);
     s.Add(el);
     return s;
 }