consulo-csharp
consulo-csharp copied to clipboard
Languages: C#
Error: Cannot implicitly convert type 'dsadas.DA' to 'short'. An explicit conversion exists (are you missing a cast?)(CS0266) Code: ```csharp public enum DA { STRING, STRING2 } public class EnumError {...
Hi, is there any way to add COM Library dependencies without needing to add the .dll file? For example the Microsoft.Office.Interop library. Thank you


```csharp namespace highlightError { public class HighError { public static void me() { HighError error = new HighError(); error.Call().Trim(); error.Call.Trim(); // Call resolved. Make better error - method found }...
```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...