Tagged Questions
6
votes
10answers
4k views
Static Methods in an Interface/Abstract Class
First off, I understand the reasons why an interface or abstract class (in the .NET/C# terminology) cannot have abstract static methods. My question is then more focused on the best design solution.
...
4
votes
4answers
475 views
Plug In Design for .NET App
I’m looking at rewriting a portion of our application in C# (currently legacy VB6 code). The module I am starting with is responsible for importing data from a variety of systems into our database. ...
1
vote
0answers
57 views
Overriding interface definitions [closed]
Possible Duplicate:
Why is it impossible to override a getter-only property and add a setter?
Let's say that I got the following interfaces:
public interface IMessage
{
bool KeepAlive ...