Intellisense doesn't work for Attributes
Hello,
I was wondering if this is happening for anyone else. It seems that when I try to add an attribute to a property on a class, LINQPad doesn't have intellisense information for the constructor of the attributes. For example, when I add the JsonProperty attribute, I just have to know that the first property is "name" because it doesn't show anything.
This happens even if I hit Ctrl+. to have the auto-complete window appear. The window will show up but doesn't show the constructor to the attribute.
But I would expect to see something like:
I was wondering if this is happening for anyone else. It seems that when I try to add an attribute to a property on a class, LINQPad doesn't have intellisense information for the constructor of the attributes. For example, when I add the JsonProperty attribute, I just have to know that the first property is "name" because it doesn't show anything.
This happens even if I hit Ctrl+. to have the auto-complete window appear. The window will show up but doesn't show the constructor to the attribute.
public class Test { [JsonProperty("name")] public String Name { get; set; } }I currently see this:
But I would expect to see something like:
Comments
http://www.linqpad.net/download.aspx#beta
Is it possible to make it so that when you hit tab for completion it removes the word Attribute from the class name? Other than that, works perfect!