how can i do empty Arraylist in immediate window in asp.net
how can i do empty Arraylist in immediate wi开发者_开发百科ndow in asp.net
EDIT: I'm making a big assumption here about your requirements, but it sounds like you want to empty an arraylist whilst debugging your ASP.NET app?
Put a breakpoint in your ASP.NET where the arraylist is accessible. Then in the immediate window:
? arraylist.Clear()
and press return.
精彩评论