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
; en dash | |
!NumpadSub:: | |
Send, {ASC 0150} | |
return | |
; em dash | |
!NumpadAdd:: | |
Send, {ASC 0151} | |
return |
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
public class NestedInitializerExample | |
{ | |
public void Init() | |
{ | |
Rectangle rectangle = new Rectangle | |
{ | |
P1 = { X = 0, Y = 1 }, | |
P2 = { X = 2, Y = 3 } | |
}; | |
} |
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
public int Add(int a, int b) | |
{ | |
Contract.Requires<ArgumentOutOfRangeException>(a >= 0); | |
Contract.Requires<ArgumentOutOfRangeException>(b >= 0); | |
// ... | |
} |
NewerOlder