This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Patterns xmlns="urn:schemas-jetbrains-com:member-reordering-patterns"> | |
<TypePattern DisplayName="Non-reorderable types"> | |
<TypePattern.Match> | |
<Or> | |
<And> | |
<Kind Is="Interface" /> | |
<Or> | |
<HasAttribute Name="System.Runtime.InteropServices.InterfaceTypeAttribute" /> | |
<HasAttribute Name="System.Runtime.InteropServices.ComImport" /> | |
</Or> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="Windows-1252" ?> | |
<!-- | |
Theme name : Visual Studio | |
--> | |
<NotepadPlus> | |
<LexerStyles> | |
<LexerType name="sql" desc="SQL" ext=""> | |
<WordsStyle name="KEYWORD" styleID="5" fgColor="0000FF" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" keywordClass="instre1" /> | |
<WordsStyle name="NUMBER" styleID="4" fgColor="0060BF" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" /> | |
<WordsStyle name="STRING" styleID="6" fgColor="007BEF" bgColor="FFFFFF" fontName="" fontStyle="0" fontSize="" /> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Requires -Version 6.0 | |
[CmdletBinding(PositionalBinding)] | |
param ( | |
[Parameter(Position=0)] | |
[string] | |
$Operation, | |
[Parameter(Position=1)] | |
[String] | |
$Key, |