Tagged Questions
4
votes
6answers
336 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 conjured up idea):
...