ObjectFiller.NET icon indicating copy to clipboard operation
ObjectFiller.NET copied to clipboard

Support for immutable types

Open star-kasperbirkelundlarsen opened this issue 5 years ago • 0 comments

Hi, is it possible so fill an immutable class (with no setter on the properties)?

    public class MyClass
    {
        public string Name { get; }

        public MyClass(string name)
        {
            Name = name;
        }
    }