I have a 2 classes Record and Pos. The class Record has a List.
public class Record
{
    public string RecordNr { get; set; }
    public List<Pos> Positions { get; set; }
    public bool barred { get; set; }
    public Vorgang()
    {
        RecordNr = "";
        Positions = null;
        barred = false;
    }
}
public class Pos
{
    public string PosNr { get; set; }
    public string ArtNr { get; set; }
    public Pos()
    {
        PosNr = "";
        ArtNr = "";
    }
}
How can I add a item to List in the Record class.
Pos cPos = new Pos 
{
   ArtNr = "35454",
   PosNr = "1",
};
Record cRec = new Record ();
cRec.Positions.Add(cPos);
Why I get a System.NullReferenceException?
