Hendrik Lösch
Hendrik Lösch
I have following classes without any inheritance: ```c# public class Position { public int Company; public int LeaseNumber; public decimal Costs; } ``` ```c# public class SubPostion { public int...
I wanted to create a list of objects. They must be of type object. I was not able to create them with Randomizer.Create(110) because there was no type Object registered....
I have following classes: ``` public class A { public string Test { get; set; } } public class B { public A MyA {get; set; } } public class...