reg query "HKLM\Software\Microsoft\NET Framework Setup\NDP" /s /v version | findstr /i version | sort /+26 /r
This file contains hidden or 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
| export function parseQueryString() { | |
| const qs = decodeURIComponent(window.location.search.substring(1)).split('&'); | |
| const result = {}; | |
| for (const i in qs) { | |
| if (Object.prototype.hasOwnProperty.call(qs, i)) { | |
| const keyValue = qs[i].split('='); | |
| result[keyValue[0]] = keyValue[1]; | |
| } |
This file contains hidden or 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
| class Program | |
| { | |
| interface IPrinter | |
| { | |
| void Print(); | |
| } | |
| class InjectPrinter : IPrinter | |
| { | |
| public void Print() |
NewerOlder