4
votes
1answer
48 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
53 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
23 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
33 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
55 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
28 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
49 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
80 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
31 views
Dynamically implement interface in Groovy using invokeMethod
Groovy offers some really neat language features for dealing with and implementing Java interfaces, but I seem kind of stuck.
I want to dynamically implement an Interface on a Groovy class and …
0
votes
2answers
56 views
Adding functionality by adding new interfaces instead of extending existing ones
I need to add some new functionality to an existing interface. There are already a lot of classes in the project implementing it but a few of them wouldn't need the new set of features. My first …
0
votes
1answer
63 views
Creating good interfaces, what should be included and what should be left out
I am in the process of updating a website for the third time in in 2 years, looks like this is going to happen all of the time and several websites are using the same DB. I want to use the same code …
0
votes
1answer
32 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 …
0
votes
2answers
34 views
Linqtosql - Returning custom class with interface
Why can't I return as a new custom class (cms.bo.Site) which implements ISite?
public IQueryable<ISite> GetSites()
{
return (from site in Db.Sites select new cms.bo.Site(site.id, …
0
votes
3answers
63 views
How to return an object that implements an interface from a method
I'm trying to learn interfaces and want to try the following:
Let's say I have an interface named ICustomer that defines basic properties (UserID, UserName, etc). Now, I have multiple concrete …
6
votes
7answers
107 views
Where to put the interfaces in a component based architecture?
In a component based architecture where a large number of decoupled components communicate through a set of standardized interfaces - are there any guidelines for where-to-store / how-to-group the …
