4 references to or
Microsoft.VisualStudio.LanguageServices.CSharp (2)
Options\Formatting\StyleViewModel.cs (2)
279
var v = x != null ? x : y; // {ServicesVSResources.
or
}
329
var v = o == null ? null : o.ToString(); // {ServicesVSResources.
or
}
Microsoft.VisualStudio.LanguageServices.VisualBasic (2)
Options\StyleViewModel.vb (2)
332
Dim v = If(x Is Nothing, y, x) ' {ServicesVSResources.
or
}
353
Dim v = If(o Is Nothing, Nothing, o.ToString()) ' {ServicesVSResources.
or
}