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
Hey, JoeAlbahari, could you please take a look on this?
I've got a fix in the works for syntax coloring. Autocompletion on named properties might take a while.