Why does this IF statement fail?
- by ChosenOne
If variable path is empty, and editor.Text is not empty, the SaveFileDialog should be displayed.
Now, why on earth is this damn thing failing???
I have tried this with many different variations of code with the same result: FAIL:
if(path.Length >= 1) // path contains a path. Save changes instead of creating NEW file.
{
…