consulo-csharp icon indicating copy to clipboard operation
consulo-csharp copied to clipboard

Languages: C#

Results 56 consulo-csharp issues
Sort by recently updated
recently updated
newest added

Need option for UI too. Initial from https://github.com/consulo/consulo-csharp/issues/553 CS8632=The annotation for nullable reference types should only be used in code within a '#nullable' annotations context. ``` -nullable[+|-] Specify nullable context...

prio: major
subsystem: stubbing
subsystem: highlight
language-level: 8

![screenshot](https://user-images.githubusercontent.com/17984449/88531288-3c743100-d020-11ea-9358-423bc4ea7958.png) I am using Consulo for working on a Mono project (and added GTK sharp NuGet package to make GTK apps). I am using .net 4.7.2 with C# 8.0 I...

prio: normal
type: bug

```csharp test(ref this); ```

```csharp void test() { void test() {} } ```

prio: major
type: bug
subsystem: parsing
language-level: 6

```csharp using System; class Example { static void Main() { int b = 1; string str = $"test {{"; Console.WriteLine(str); str = $"test }}"; Console.WriteLine(str); str = $"test {{}}"; Console.WriteLine(str);...

prio: normal
type: bug
subsystem: parsing
subsystem: highlight

I could not find an option for formatting attributes and actually would like to ignore the formatting for "next line" for attributes. This is how I have my attributes ```csharp...

type: task
prio: normal
type: bug
subsystem: formatting

Consider the following code: ```csharp public class Temp { public void foo() { // uses int overload, ok int a = f(1, 2); // uses int overload, again ok int...

prio: normal
type: bug
subsystem: highlight

https://github.com/consulo/consulo-csharp/issues/518#issuecomment-364409670

prio: normal
type: bug
subsystem: highlight

A feature request: understanding `` tag. Documentation generators like Sandcastle support this (more info in [this VS UserVoice thread](https://visualstudio.uservoice.com/forums/121579-visual-studio-ide/suggestions/3745102-add-intellisense-support-for-the-inheritdoc-tag) and [this SO answer](https://stackoverflow.com/a/7571614/693538)), and recently ReSharper/Rider also added such feature...

prio: normal
subsystem: documentation

Error: Cannot implicitly convert type 'int' to 'short'. An explicit conversion exists (are you missing a cast?)(CS0266) Code ```csharp public void test() { short count = 0; count -= Math.Min(1,...

prio: normal
type: bug
subsystem: resolving
subsystem: highlight