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
Microsoft Windows [Version 6.3.9600] | |
(c) 2013 Microsoft Corporation. All rights reserved. | |
C:\Users\William>tracert jabbr.net | |
Tracing route to jabbr.net [137.117.17.70] | |
over a maximum of 30 hops: | |
1 6 ms 6 ms 9 ms 192.168.2.1 | |
2 * * * Request timed out. |
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
Disable-UAC | |
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions | |
Set-StartScreenOptions -EnableBootToDesktop | |
cinst IIS-WebServerRole -source windowsFeatures | |
cinst IIS-ISAPIFilter -source windowsFeatures | |
cinst IIS-ISAPIExtensions -source windowsFeatures | |
cinst IIS-NetFxExtensibility -source windowsFeatures | |
cinst IIS-ASPNET -source windowsFeatures | |
cinst TelnetClient -source windowsFeatures |
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
public class Demo | |
{ | |
private Dictionary<Type, Action<object>> strategies; | |
public Demo() | |
{ | |
strategies = new Dictionary<Type, Action<object>>(); | |
strategies.Add(typeof(OutputToConsoleWindow), value => DoSomething(value as OutputToConsoleWindow)); | |
strategies.Add(typeof(OutputToLogFile), value => DoSomething(value as OutputToLogFile)); | |
} |
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
using System; | |
using System.Collections; | |
using System.Data; | |
namespace DBPortal | |
{ | |
[Serializable()] | |
public class AmountsRec | |
{ | |
public int AmtSeqNo {get{return _AmtSeqNo_;}set{_AmtSeqNo_=value;}}int _AmtSeqNo_; |