0
votes
4answers
62 views
How to expose a method in an interface without making it public to all classes
I have a issue where I'm working with a particular interface for quite a lot of things. However, I have a particular method that I want to be available only to a particular group o …
1
vote
2answers
66 views
Is there a way to find an interface implentation based on a generic type argument?
I have a data access library that has a few classes that all implement the same interface, which has a generic type parameter:
public interface IGetByCommonStringRepository<TEn …
-1
votes
2answers
112 views
Do interfaces solve DDD with code duplication?
AccountController can't extend BaseAccount and BaseController at the same time. If I make all BaseAccount or BaseController methods empty, I can have an interface, but if I impleme …
2
votes
1answer
92 views
C# inheritance with views and presenters
I am working with MVP in ASP.NET and wanted see if there is an easier/cleaner way to do this.
I have a presenter with a view. It turns out I can reuse some of the view properties …
0
votes
3answers
45 views
How can I create an interface in VBNet with implicit implimentations
In C# I can create an interface, and when I use the interface the compiler knows that certain interface requirements are fulfilled by the base class. This is probably clearer with …
1
vote
2answers
55 views
Auto Property that returns an interface
This is something curious that I saw in my coding today.
Here is the sample code:
public class SomeClass
{
public IUtils UtilitiesProperty { get; set; }
}
public interface IU …
0
votes
2answers
33 views
Getting NHibernate to generate a HiLo string ID
Hi,
We've got a large system that's loosely bound to its data source (Navision) via Unity - we're getting the opportunity to swap it out and have our own database.
So we've had a …
3
votes
5answers
89 views
C# How to generate an object implementing different interfaces dynamically at runtime?
Hello everyone,
I'm looking at how to solve a problem and I'm not even sure this might be possible at all in C# & .NET 3.5:
Say I have a limited number of interfaces, each de …
2
votes
7answers
125 views
Is it possible to avoid using type checking in this example?
Sorry for the poor title, can't think of a succinct way of putting this..
I'm thinking of having a list of objects that will all be of a specific interface. Each of these objects …
0
votes
2answers
89 views
Unknown Problem with Java Generics
Hey
Im trying to use generic types for the first time in Java , as I only want my constructor to accept classes that implement the "Anealable" interface. theres a problem with my …
8
votes
11answers
277 views
Force a class to override the .equals method
I have a bunch of class who implement a common interface : Command.
And this bunch of class goes to a Map.
To get the Map working correctly, I need to each class who implements …
8
votes
13answers
360 views
A difference in style: IDictionary vs Dictionary
I have a friend who's just getting into .NET development after developing in Java for ages and, after looking at some of his code I notice that he's doing the following quite often …
0
votes
3answers
78 views
PIMPL problem: How to have multiple interfaces to the impl w/o code duplication
I have this pimpl design where the implementation classes are polymorphic but the interfaces are supposed to just contain a pointer, making them polymorphic somewhat defeats the pu …
3
votes
3answers
94 views
Interfaces with different getter and setter for the same propertie
I've made the following declaration for interfaces:
public interface IBasic
{
int Data { get; }
}
public interface IChangeable : IBasic
{
int Data { set; }
}
The compiler s …
0
votes
1answer
25 views
Should interfaces be in a separate project from their implementation?
My question isn't so much about use of interfaces but more of a project organization nature.
Note: I am using VisualStudio in a multi-layered application.
Should my Interface fi …
