Valery Semenchuk
Valery Semenchuk
```csharp namespace implicitCast { public class BBParameter { public static implicit operator BBParameter(T value) { return new BBParameter(); } } } using implicitCast; namespace implCast { public class TestMe {...
CS0136
```csharp #pragma warning disable 219 using System; namespace test { public class DefaultTest { public static void aA(string d = default(string)) { string[] a = null; foreach (string s in...
```csharp public enum Test { someValue = "fdsafasfsa" ^^^^^^^ - no error } ```
``` csharp using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Threading.Tasks; public class Program { static void Main() { test(() => { return ""; // error expected void but found String...
https://github.com/ljw1004/roslyn/blob/features/async-return/docs/specs/feature%20-%20arbitrary%20async%20returns.md
https://github.com/dotnet/roslyn/issues/118
https://github.com/dotnet/roslyn/issues/216
https://github.com/dotnet/roslyn/issues/215
``` csharp int intValue = 0; MethodAttributes attributes = MethodAttributes.Static; int value = someBoolExpression ? intValue : attributes; // no error at 'attributes' ```