17
votes
12answers
4k views
Why Doesn’t C# Allow Static Methods to Implement an Interface?
Why was C# designed this way?
As I understand it, an interface only describes behaviour, and serves the purpose of describing a contractual obligation for classes implementing the interface …
1
vote
How to improve the program coding.
It is useful to keep up with technologies, but even more useful to learn timeless skills that will apply whatever development tools you use.
To that end, I recommend reading Code Complete, …
-3
votes
Most wanted feature for C# 4.0 ?
Interfaces that include a class' static members.
Option to allow sub-classes to inherit attributes from their parents.
Generic constrains based on value types.
Mult …
0
votes
How much faster is C++ than C#?
I know it isn't what you were asking, but C# is often quicker to write than C++, which is a big bonus in a commercial setting.
…
3
votes
Am I Running as a Service
Like Ash, I write all actual processing code in a separate class library assembly, which was then referenced by the windows service executable, as well as a console app.
However, there are …
1
vote
Curious pop-up behavior when using WebBrowser class
IIRC you can trap the NewWindow2 event on the WebBrowser control and set Cancel = true to prevent the pop-up.
This article may help:
…
0
votes
Using Crystal Reports in Visual Studio 2005 (C# .NET Windows App)
I strongly recommend trying an alternative reporting solution - I have a lot of experience with Crystal, and have managed to do some funky things with it in .Net, but quite honestly the integration …
