我正在尝试查看是否有更好的方法来编写以下内容:
if ((DirectoryDetailsPath == null) & (FileDetailsPath == null))
{
Console.WriteLine("Error: Path for 'Directory' or 'File' has to be specified.");
}
不使用按位“&”运算符。我更喜欢使用逻辑运算符,但由于短路,我无法评估这两个字段。
如果两个字段都是“null”,我只想看到一个错误。
谢谢