c# - Using a class (User control) in stack -


i sorry if noob question. learning user controls , bit of code popped up.

private stack<myfirstusercontrol1> _mycontrols = new stack<myfirstusercontrol1>(); private int _controlsinstantiated = 0;  

can use class within stack? can explain? noob question i'm sure...

stack<myfirstusercontrol1> means collection of myfirstcontrol1 type


Comments

Popular posts from this blog

c# - Update a combobox from a presenter (MVP) -

How to understand 2 main() functions after using uftrace to profile the C++ program? -

How to put a lock and transaction on table using spring 4 or above using jdbcTemplate and annotations like @Transactional? -