4

Recent interview question is

If C# language allow us create partial delegates what are the consequences will you meet?

Help me to understand the reason.

Thanks in advance.

Donal Fellows
  • 133,037
  • 18
  • 149
  • 215
Amutha
  • 67
  • 2

2 Answers2

9

You should ask for clarification on this question. Because C# does support creating a delegate to a partial method as long as the partial method has been implemented. If this is what the question is implying then I guess 'the consequence you will meet' is that the partial method must be implemented and not only defined.

The wording 'create partial delegate' does not make any sense since we have no definition of what a partial delegate might be.

Chris Taylor
  • 52,623
  • 10
  • 78
  • 89
2

Doesn't really make any sense to me.. when you define a delegate you need its signature, there's no point in a "partial" signature, it really says nothing

Ohad Schneider
  • 36,600
  • 15
  • 168
  • 198