I have a question, i have a class like the following:
public class RecordedFeatureList
{
public string name { get; set; }
public string type { get; set; }
}
and when I execute the debugger to see what i'm loading in these fields, the inspector throws me this:
name "the name"
@type "a string"
Any ideas what "@" means before type???
Thanks!