Udostępnij za pośrednictwem


ContextStack.Push(Object) Metoda

Definicja

Wypycha lub umieszcza określony obiekt na stosie.

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

Parametry

context
Object

Obiekt kontekstu do wypchnięcia do stosu.

Wyjątki

context to null.

Przykłady

Poniższy przykład kodu pokazuje wypychanie wartości do elementu 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

Dotyczy