Tagged Questions

13
votes
7answers
374 views

C#.NET - Why do members of a static class need to be declared as static? Why isn't it just implicit?

Obviously there can't be an instance member on a static class, since that class could never be instantiated. Why do we need to declare members as static?
10
votes
11answers
2k views

C# Static class vs struct for predefined strings

A co-worker just created the following construction in C# (the example code is simplified). His goal was to shorten the notation for all predefined strings in the rest of the code. public struct ...
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 ...
7
votes
6answers
748 views

Why are static classes used?

I have doubts on static class and static methods. From MSDN I understood that "Static classes and class members are used to create data and functions that can be accessed without creating an instance ...
5
votes
3answers
526 views

Exception in static constructor

I've dug around SO for an answer to this, and the best one I can find so far is here, however that is geared toward instances with static constructors; I'm only using the class statically. My code: ...
5
votes
3answers
365 views

How to serialize non-static child class of static class

I want to serialize a pretty ordinary class, but the catch is it's nested in a static class like this: public static class StaticClass { [Serializable] public class SomeType { ... ...
5
votes
2answers
411 views

Which static class initialize first?

Which static class initialize first if we have one more static classes in our project? For example : Below code gives null exception. class Program { static void Main(string[] args) ...
3
votes
3answers
168 views

Having separate copy of base class static member in each derived class

I have following class structure: public abstract class PresenterBase { public static Dictionary<string, MethodInfo> methodsList; public void Bind() public void Initialize(); } ...
3
votes
6answers
193 views

If a class is blueprint for objects, what about static class?

Reading C# Step by Step, the author mentiones the class is just blueprint for objects and itself is useless. Well, how then comes static classes can work alone? I do understand the concept that ...
3
votes
5answers
746 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
3answers
125 views

Is it a good practice to use static classes to making the UI elements accessible from all the classes in .NET?

Please let me know which of the following is a good programming practise: 1. Using a static class and then using a reference to it from the class MainWindow constructor as shown: public partial ...
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 ...
2
votes
2answers
163 views

Why are my static objects not being instantiated when first access to the static class is a static method on the base class?

I have the following class: public class DocketType : Enumeration<DocketType, int, string> { public static DocketType ChangeOver = new DocketType(1, "Changeover"); public static ...
2
votes
3answers
474 views

C# - Which is more efficient and thread safe? static or instant classes?

Consider the following two scenarios: //Data Contract public class MyValue { } Scenario 1: Using a static helper class. public class Broker { private string[] _userRoles; public ...
1
vote
3answers
69 views

static class to Dictionary<string, string> in c#

I have a static class which only contains string properties. I want to convert that class into a name-value pair dictionary with key=PropName, value=PropValue. Below is the code I have written: void ...
1
vote
2answers
202 views

Translate DllImport from static member of static class in C# console app to member of C++ CLR console app

I have the following and I can't shift the error surrounding the DllImport #include "stdafx.h" #include <msclr/auto_gcroot.h> using namespace System; using namespace System::Diagnostics; using ...
1
vote
4answers
737 views

Abstract classes vs Static classes in C# [closed]

Possible Duplicate: What's the difference between an abstract class and a static one? Hello I Would like to know what are all the differences between abstract classes and static classes ...
1
vote
3answers
288 views

What's the difference between enums & using static classes with constants?

What are the performance implications between these two items? I've seen the static class in the wild recently and I'm not sure what to make of it. public enum SomeEnum { One = 1, Two, Three ...
1
vote
3answers
442 views

Type initializer threw an exception

This class is throwing an exception. It doesn't show me the exact line number, but it sounds like it's occurring in the static constructor: static class _selectors { public static string[] order ...
1
vote
1answer
134 views

How to force static class to implement specific methods?

I need to create a set of static classes and all of them need to implement the same methods. I want to find a way to force them so. I understand that static classes cannot derive anything other than ...
0
votes
1answer
63 views

UnitTesting static Class (Theoretical Question)

I know when is ok to use a Static Class, but my simple question is: If there's a big problem when we're Unit-Testing our code that has some Static Class? Is better just using a regular instances ...
0
votes
3answers
164 views

c# vb: do we really need System.Lazy?

Do we really need System.Lazy? Let's say my class library have 100 static classes and each static class uses an average of 100 static System.Lazys = 10000 System.Lazys that have to be initiated when a ...
0
votes
2answers
87 views

What happens in a static parametrized class regarding its instance?

Suppose I have this class: public class DispatcherService<T> { private static Action<T> Dispatcher; public static void SetDispatcher(Action<T> action) { ...
0
votes
2answers
131 views

Referencing a static class from an array?

I have a list of numbers, and each number that is the same should act exactly the same. So I have static classes for each number so that if I change the class, so do all of the numbers it references ...
0
votes
2answers
133 views

Acceptable use of static classes?

Have a class that was not originally meant to be static... public class SapApprovalHandler { private static SapGs3DataSet sapGs3DataSet; static SapApprovalHandler() { try { ...
0
votes
3answers
293 views

TextBox not updating in C#

Specifically looking at the arrive method in the Customer class. I am using a for loop to create instances of the customer class, and when I try to write out their arrival times to a textBox (Just for ...
0
votes
1answer
94 views

Static classes and efficiency

I want to understand the efficiency of static classes as I think my basic thinking in this area might be flawed. I often write code like the following with the assumption that the expensive reflection ...
0
votes
2answers
191 views

using static classes for global objects in C#

I am using a list for particles. List<Particle> particles; Normally i place this list in my Simulation class. Which calculates position, velocity and other properties of particles. A few ...
0
votes
1answer
557 views

Could/Should I use static classes in asp.net/c# for shared data?

Here's the situation I have: I'm building an online system to be used by school groups. Only one school can log into the system at any one time, and from that school you'll get about 13 users. They ...
0
votes
2answers
139 views

Odd Static Class Issue

Below is my very simple static class. Not sure what is wrong. I am using it in a non static class that has a correct "using" statement. Intellisense sees the class and its one method. I am getting ...
0
votes
4answers
2k 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 ...
-1
votes
4answers
74 views

What is the difference between putting a static method in a static class and putting an instance method in a static class?

What is the difference between these two classes? public static class MyClass { public static string SayHello() { return "Hello"; } } public static class MyClass { public ...