i need a status box on my etl tool-- where i can 'trap' the 20 most
recent status messages.
i don't want to do a whole bunch of parsing of text; and string concat.
Dim s As New Stack()
s.Push("This")
s.Push("Is")
s.Push("How")
s.Push("Stacks" )
s.Push("Work")
Console.WriteLi ne(s.Peek())
i saw this example; this is awfully similiar to what i want to do--
would it be crazy to make 20 different stacks
stack20->stack19->stack18->
i just dont get it; and i would LOVE a little bit of guidance.
i want to be able to push
Aaron
Matt
Ray
and then add a new member 'Jose'
which would give me
Jose
Aaron
Matt
thanks team!!
recent status messages.
i don't want to do a whole bunch of parsing of text; and string concat.
Dim s As New Stack()
s.Push("This")
s.Push("Is")
s.Push("How")
s.Push("Stacks" )
s.Push("Work")
Console.WriteLi ne(s.Peek())
i saw this example; this is awfully similiar to what i want to do--
would it be crazy to make 20 different stacks
stack20->stack19->stack18->
i just dont get it; and i would LOVE a little bit of guidance.
i want to be able to push
Aaron
Matt
Ray
and then add a new member 'Jose'
which would give me
Jose
Aaron
Matt
thanks team!!
Comment