What exceptions should be thrown for invalid or unexpected parameters in .NET?

后端 未结 7 698
误落风尘
误落风尘 2020-12-22 16:43

What types of exceptions should be thrown for invalid or unexpected parameters in .NET? When would I choose one instead of another?

Follow-up:

Which excep

相关标签:
7条回答
  • 2020-12-22 17:14

    argument exception.

    • System.ArgumentException
    • System.ArgumentNullException
    • System.ArgumentOutOfRangeException
    0 讨论(0)
提交回复
热议问题