I have a Conversion class like this:
public class Conversion
{
    public memorySource MSource { get; set; }
    public Rule[] Rules { get; set; }
    public Conversion(XElement xElement)
    {
       // I use Rules property here 
       // From Rules property and xElement parameter i initialize MSource Property
    }
    public Conversion(ExcelPackage)
    {
       // Also i use Rules property here 
       // From Rules property and xElement parameter i initialize MSource Property
    }
}
When I want to construct an instance of the Conversion class, I do this:
Conversion cvr = new Conversion(xElement) { Rules = rules };
Then I get this error:
Object reference not set to an instance of an object
I know that construction of object begins before initializing of properties, but is there a way to do inverse?
I can use Rules property as parameter of constructor but it is not suitable for performance because I have several constructors.
                        
Yes, simply pass the value as parameter in the constructor. It's the only way:
Where the constructor is:
You can default the
rulesparameter for your other constructor, so you don't have to duplicate code: