3
votes
6answers
108 views
How can I store different objects in a single list
I have two classes an Arc class and a Line class
public class Arc
{
protected double startx;
protected double starty;
protected double endx;
protected double endy;
protected …
4
votes
7answers
169 views
What exactly is “interface based programming”?
Hey guys,
I often hear/read about interfaced based programming but I am not exactly clear on what that really means. Is interfaced based programming an actual stand alone topic that actually has …
6
votes
8answers
2k views
How to mock with static methods?
I'm new to mock objects, but I understand that I need to have my classes implement interfaces in order to mock them.
The problem I'm having is that in my data access layer, I want to have static …
0
votes
4answers
65 views
Class implementations in interface dll?
Hello,
my problem: Inside an application, all interfaces are declared inside an own dll(project "interfaces", for example).
Inside project interfaces, there are many class implementations, too.
Now …
0
votes
5answers
94 views
Where should interfaces and other dependencies go in C#?
By other dependencies I mean abstract classes, and anything else.
I have a project in the form of a dll which needs a certain interface, IInput. A test project requires this interface as well, so I …
0
votes
5answers
147 views
Connection and Collection Interfaces in Java
Which class implements all the Connection Interfaces which are in javax.microedition.io package and how?
And in the same way which class implements the some of Collection interfaces like Iterator …
4
votes
1answer
66 views
Forcing F# type inference on generics and interfaces to stay loose
We're gettin' hairy here. I've tested a bunch of tree-synchronizing code on concrete representations of data, and now I need to abstract it so that it can run with any source and target that support …
1
vote
2answers
69 views
Why? Redeclare things to implement interfaces?! in VB.NET
Hello, experts.
I work in VB.NET v2
I have an interface IMyInterface and this interface implements a method MyMethod.
I have an object MyObjectBase. This object contains a(the same) method …
0
votes
1answer
28 views
Serializable class inheriting from an Interface with a property of its own type
I have an interface, with a definintion for a property that is the same type as the interface.
public interface IMyInterface
{
IMyInterface parent
{
get;
set;
}
}
Now …
1
vote
2answers
45 views
C#: Generic interfaces and understanding “type parameter declaration must be an identifier not a type”
I'm trying to understand the generic interface as described in this
My example has an interface:
public interface ITest<T> where T: class
{
T GetByID(int id);
}
I have a class that …
2
votes
4answers
57 views
.NET Framework built-in interfaces, recommendations when building a custom data structure?
I'm implementing an AVL binary tree data structure in C# .NET 2.0 (possibly moving to 3.5). I've got it to the point where it is passing my initial unit tests without needing to implement any …
0
votes
1answer
32 views
Abstract enum a annotation attribute type
Hi,
I have an interface which multiple enums are implementing, i.e
public interface MinorCodes {
public abstract int code();
public abstract String description();
}
public enum …
1
vote
4answers
53 views
How to get a base class method return type to be the subclass type?
I have a copy function that I'd like to override in subclasses to return the type of the subclass. Here are my interfaces:
Public Interface IBase(Of T)
Function Copy() As T
End Interface
Public …
2
votes
1answer
83 views
Using is operator with Interface to Generics
Guys,
I have a few generic classes that implement a common non-generic interface. I create my generic objects and add them to a list. How can I use LINQ, or any other method for that matter, to …
0
votes
1answer
35 views
are scenarios/stories the new interface in BDD/TDD?
PHP is somewhat crippled since it doesn't have return types (yet). I need my code to throw an exception when X already exists. I can write this in a scenario, but I'm not able to go from the scenarios …
