OpenFileDialog's ShowDialog method returns a nullable boolean, set to true if the user clicked OK or false if he clicked Cancel. When does it return null? The documentation does not say.
|
|
|
||||||||||
|
|
|
This is stated in the questions linked below, but I'll mention here that Programming WPF (Chris Sells, Ian Griffiths) says:
Similar question: When would ShowDialog() return null? |
|||
|
|
|
|
According to the .NET reflector,
So... you shouldn't ever get a The Windows Forms version of OpenFileDialog returns a DialogResult, which has a wider range of values. |
|||
|
|
|
|
My guess is that OpenFileDialog returns bool? to be consistent with other WPF dialogs that actually can return a null result. |
||
|
|
