4
votes
6answers
205 views
Is there a way I can enforce a method to follow certain method signature?
let's say I have
public delegate DataSet AutoCompleteDelegate(
string filter, long rowOffset);
can I make the following class to enforce that method signature? (just a co …
3
votes
7answers
737 views
Is the MS Ribbon/Office UI License worth worrying about?
Imagine I want to create an application which is very similar to MS Word 2007, using C++ in VS2008 and the MFC Feature Pack. For the ribbon, there are 3 options available to me:
…
2
votes
1answer
153 views
How can I limit calls for a WCF service within a time span?
Hello,
I want to write a WCF service that can't run more than X times per hour. I want the service to suspended messages to a queue if the service was called more than x time in t …
