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
| return Win() | |
| .DoIfNull(Advantage) | |
| .DoIfNull(ScoreNormal) | |
| .DoIfNull(ScorePerson1) | |
| .DoIfNull(ScorePerson2) | |
| .DoIfNull(ScoreTie); |
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
| string result = null; | |
| if (result == null) | |
| result = Win(); | |
| if (result == null) | |
| result = Advantage(); | |
| if (result == null) | |
| result = ScoreNormal(); | |
| if (result == null) | |
| result = ScorePerson1(); | |
| if (result == null) |
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
| Set-CornerNavigationOptions -EnableUpperRightCornerShowCharms -EnableUpperLeftCornerSwitchApps -EnableUsePowerShellOnWinX | |
| Update-ExecutionPolicy RemoteSigned | |
| Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowFileExtensions | |
| Enable-RemoteDesktop | |
| Install-WindowsUpdate -acceptEula | |
| #cinst sublimetext3 sublimetext3.packagecontrol | |
| #cinst 7zip | |
| cinst googlechrome |