namespace MatFileHandler { /// internal class MatVariable : IVariable { /// /// Initializes a new instance of the class. /// /// The value of the variable. /// Variable name. /// Indicates if the variable is global. public MatVariable(IArray value, string name, bool isGlobal) { Value = value; Name = name; IsGlobal = isGlobal; } /// public string Name { get; set; } /// public IArray Value { get; } /// public bool IsGlobal { get; } } }