Tagged Questions

5
votes
2answers
228 views

How to design my C# jQuery API such that it isn't confusing to use?

I'm making a jquery clone for C#. Right now I've got it set up so that every method is an extension method on IEnumerable<HtmlNode> so it works well with existing projects that are already using ...
2
votes
3answers
1k views

How to call Events in Interfaces C#?

So i have a design problem. I have a mouse class that has delegates and events. ie MouseButtonPressed, MouseMoved. and such that are getting called by a state engine. What i want to have happen is ...
1
vote
3answers
89 views

How to replace enumeration with something like interface ID?

Please consider the following interfaces: interface IFile { // Members }; interface IAudioFile : IFile { // Members }; interface IVideoFile : IFile { // Members }; enum ContentType { ...
1
vote
2answers
184 views

Is this a good interface for persistent state?

I'm developing a game that maintains its information in a class called WorldState. Each GameObject in the world (trees, zombies, the player, health packs, etc) is composed of three objects: ...
0
votes
2answers
287 views

Best practices when using an interface

Many times when designing interfaces I keep running into the same situation. The situation is where certain implementations using an interface require particular parameters in the interface while ...