FastStack.FastStack C# (CSharp) Méthode

FastStack() public méthode

public FastStack ( int elems ) : System.Linq
elems int
Résultat System.Linq
      public FastStack(int elems){
        Elements = new int[elems];
      }