All Questions
5 questions
-3
votes
1
answer
141
views
Best way to provide third party developers access to my code? [closed]
Currently working on a project and facing a structure problem.
The app I'm developing communicate with hardware my company is building. We want to provide access to third party developer to our ...
9
votes
3
answers
18k
views
Should I create .Clone() on a class or create a copy-constructor?
I'm quite unsure what I should use in C# - both should in theory do the same, but I think both are quite easely overseen. Or is there another possibility I have to take in consideration?
I know in C++...
2
votes
1
answer
2k
views
Events in WCF Service Architecture (Server Side)
Problem:
Now, I have some events that will take place when the client submits a request to the server. These events will arise on the server and they will be subscribed by the services themselves (...
4
votes
3
answers
1k
views
Use interface or abstract class?
Now the title might seem like the question has been asked before but let me explain my situation and you'll see why I am asking this question.
Let's consider this interface :
public interface ...
56
votes
3
answers
74k
views
Which is a better practice - helper methods as instance or static?
This question is subjective but I was just curious how most programmers approach this. The sample below is in pseudo-C# but this should apply to Java, C++, and other OOP languages as well.
Anyway, ...