0
votes
5answers
111 views
Extending the Enumerable class in c#?
Hi,
I have situation to extend the Enumerable class in c# to add the new Range method that accepts long parameters. I cannot define the method like this
public static IEnumerable<long> …
0
votes
4answers
270 views
Wrapping session handling inside the static class
I separated all direct session interaction into a separate class and made it static, because I didn't want to create a new object several times. However, i wish to make sure that there are not …
0
votes
2answers
343 views
ASP.NET MVC, ActionFilters, static classes and passing data around…
I'd like to hear your opinions and maybe better suggestions for the following scenario:
I have define a custom ActionFilter that does some job and comes out with some value. I would like to use that …
