Home

More intellisense/code highlight on C# Attributes?

Issue 1: Currently attributes in LINQPad is not highlighted:

public class HomeController : Controller
{
    [ResponseCache]
    public DateTime Index()
    {
        return DateTime.Now;
    }

    public long UploadFile()
    {
        return Request.Form.Files[0].Length;
    }
}

Style:

Issue 2: Attributes should provide intellisense not only for constructors, but also properties:

ResponseCache is ASP.NET Core attribute, should provide at lease all writable properties like this(Visual Studio):

Comments

Sign In or Register to comment.