You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PathString.Empty should be semantically equivalent to default(PathString). The expression "PathString.Empty == default(PathString)" is currently evaluated as false, as under the hood the Equals() method compares string.Empty with null, which leads to false.
PathString.Empty should be semantically equivalent to default(PathString). The expression "PathString.Empty == default(PathString)" is currently evaluated as false, as under the hood the Equals() method compares string.Empty with null, which leads to false.