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