I have the following three classes defined.
public class FrequencyRecord
{
    public double Frequency;
    public int Duration;
}
public class EntryRecord
{
    public string Name;
    public Boolean Status;
    public long TotalTime;
    public FrequencyRecord[] FreqTime = new FrequencyRecord[25];
    public string Description;
}
public class Salv7Profile
{
    public string Version;
    public string SoftVersion;
    public string Name;
    public DateTime CreateDate;
    public DateTime LastModDate;
    public int Count;
    public EntryRecord[] Entries = new EntryRecord[99];
    public int Type;                         
}
Then I create an instance:
public static Salv7Profile IntProfile = new Salv7Profile();
Assigning a value to:
IntProfile.Name = "Peter"; 
works fine, But if I try:
IntProfile.Entries[1].Name = "Peter"; 
It throws an error: [System.NullReferenceException] "Object reference not set to an instance of an object."}
Being a novice at C#, how do I access the nested Entries class?
 
     
    