Tagged Questions
10
votes
3answers
2k views
Extension methods on a static class?
I know i can do the below to extend a class. I have a static class i would like to extend. How might i do it? I would like to write ClassName.MyFunc()
static public class SomeName
{
static public ...
7
votes
4answers
126 views
Why can't I create extension methods for static classes?
When I try to create an extension method for the File class, I get an error telling me that I cannot do this because the class is static. However, I don't see why this stops the creation of an ...
3
votes
5answers
771 views
Extending the Enumerable class in c#?
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> Range(this ...
2
votes
1answer
131 views
Will this static class break in a multi user scenario?
Say I make a static class like following with an extension method:
public static class MyStaticExtensionClass
{
private static readonly Dictionary<int, SomeClass> AlgoMgmtDict
= new ...