PRIMAVERA | Developers

    Show / Hide Table of Contents

    Class StdBEStack

    Classe controladora de uma stack.

    Inheritance
    System.Object
    StdBEStack
    Implements
    StdPlatBE100.IStdBEStack
    Inherited Members
    System.Object.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    Namespace: StdPlatBE100
    Assembly: StdPlatBE100.dll
    Syntax
    [ComVisible(true)]
    [Guid("38C6DACD-A090-4337-99E8-981BBFDEFA3F")]
    [ClassInterface(ClassInterfaceType.None)]
    public class StdBEStack : IStdBEStack

    Constructors

    StdBEStack()

    Declaration
    public StdBEStack()

    Methods

    Pop()

    Remove um elemento (POP).

    Declaration
    public object Pop()
    Returns
    Type Description
    System.Object

    Push(Object)

    Adiciona um elemento (PUSH).

    Declaration
    public void Push(object Elemento)
    Parameters
    Type Name Description
    System.Object Elemento

    Elemento a adicionar.

    Reset()

    Remove todos os elementos da stack.

    Declaration
    public void Reset()

    Top()

    Devolve o elemento no topo da stack.

    Declaration
    public object Top()
    Returns
    Type Description
    System.Object

    Implements

    StdPlatBE100.IStdBEStack