Reputation: 1290
I have a very simple class
public class Preferences
{
public bool RepeatInfinite { get; set; }
public int RepeatCount { get; set; }
}
If I put this class in another assembly it shows up in the Settings tab when you browse for the type. If I however put this class in the same assembly as the running program, I can't see it or browse for it. What's going on here?
Upvotes: 0
Views: 158
Reputation: 754585
I've had the same problem and it's quite annoying. To work around it I do the following.
Object
Upvotes: 2