0x000000EF

Results 5 comments of 0x000000EF
trafficstars

@333fred , seems that mixing of value and type matching at the one level is not a good practice (may breaks possible compiler optimizations related with preffered type matching). Possible,...

@333fred , a false alarm. More year ago C# compiler had a problem. For similar code ```cs switch (o) { case 1: return "one"; case 2: return "two"; case int...

If I understand correctly the main motivation of this proposal is only switch statements #3038. Really I don't see another value benefits from this, much more desirable for me it...

@YairHalberstadt, can you provide an example? @ronnygunawan, seems looks more clear... ```c# Button CreateClickMeButton() { var b = new Button { Text = "Click me" }; Grid.SetRow(b, 1); return b;...

@mikernet, it is not a big problem if we have something like `with` operator ```c# static T With(this T b, Action with) { with(b); return b; } var grid =...