Tagged Questions
3
votes
1answer
239 views
Should web service response use a base class or generic class?
In my RESTful WCF web service I have something like the following response object.
public class WebResponse<T>
{
public bool Success { get; set; }
public T Data { get; set; } ...
-3
votes
1answer
189 views
Reinventing the wheel, or the technology that drives it? [closed]
I recently asked a question on StackOverflow that was related to string splitting and pattern matching in .NET.
Some beady eyed developers that viewed the question said: "It looks like you're trying ...