ObjectFiller.NET
ObjectFiller.NET copied to clipboard
Support for immutable types
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;
}
}