private static bool IsOemKey()

in snipinsights/windows/SnipInsight/Util/KeyCombo.cs [320:350]


        private static bool IsOemKey(Key key)
        {
            // Note: OEM Keys appear more than once in the enum,
            // so you won't see all values listed below intentionally.

            switch (key)
            {
                case Key.OemAttn:
                case Key.OemAuto:
                case Key.OemBackslash:
                case Key.OemBackTab:
                case Key.OemClear:
                case Key.OemCloseBrackets:
                case Key.OemComma:
                case Key.OemCopy:
                case Key.OemEnlw:
                case Key.OemFinish:
                case Key.OemMinus:
                case Key.OemOpenBrackets:
                case Key.OemPeriod:
                case Key.OemPipe:
                case Key.OemPlus:
                case Key.OemQuestion:
                case Key.OemQuotes:
                case Key.OemSemicolon:
                case Key.OemTilde:
                    return true;
            }

            return false;
        }