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?
6
votes
2answers
415 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
173 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
194 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 ...
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
2answers
169 views
Where does static classes/members allocate?
it's being a long time since i'm trying to find out the truth about static classes. my point is: value types are allocated in stack, reference types in heap, when using the new operator. but a nature ...
2
votes
2answers
1k 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 ...
1
vote
2answers
697 views
Mocking a Static Class
I have a static class that wraps some native methods from winspool:
public static class WinSpool
{
[DllImport("winspool.drv")]
public static extern int OpenPrinter(string pPrinterName, out ...
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
1answer
91 views
Static classes and the Business Objects COM Library
The following code below is from a winforms application that on a button event opens up an instance of business objects 6.5, refreshes the report and then dumps the data in the report into a csv file, ...