Compartilhar via


ContextStack.Push(Object) Método

Definição

Efetua push ou coloca o objeto especificado na pilha.

public:
 void Push(System::Object ^ context);
public void Push (object context);
member this.Push : obj -> unit
Public Sub Push (context As Object)

Parâmetros

context
Object

O objeto de contexto a ser enviado por push para a pilha.

Exceções

context é null.

Exemplos

O exemplo de código a seguir demonstra como enviar valores por push para um ContextStack.

// Push ten items on to the stack and output the value of each.
for ( int number = 0; number < 10; number++ )
{
   Console::WriteLine( "Value pushed to stack: {0}", number );
   stack->Push( number );
}
// Push ten items on to the stack and output the value of each.
for( int number = 0; number < 10; number ++ )
{
    Console.WriteLine( "Value pushed to stack: "+number.ToString() );
    stack.Push( number );
}
' Push ten items on to the stack and output the value of each.
Dim number As Integer
For number = 0 To 9
    Console.WriteLine(("Value pushed to stack: " + number.ToString()))
    stack.Push(number)
Next number

Aplica-se a