Tagged Questions
4
votes
10answers
382 views
.net enumeration first and last
is there a way in .NET (or some sort of standard extension methods) to ask questions of an enumeration?
For example is the current item the first or last item in the enumeration:
string s = "";
...
1
vote
1answer
172 views
Using NSDirectoryEnumerator to model the filesystem
I'm trying to model the structure of the filesystem from a given starting path. The goal is to create a standard NSOutlineView of the filesystem from that path onwards.
I've got a model object called ...
0
votes
1answer
1k views
Is there a way to iterate through HttpServletRequest.getAttributeNames() more than once?
I'm trying to log the contents of the HttpServletRequest attributes collection. I need to do this when the servlet first starts, and again right before the servlet is finished. I'm doing this in an ...