Fix objects parsing #6

Merged
mahalex merged 7 commits from fix-objects-parsing into master 2019-03-03 15:58:34 +00:00
Showing only changes of commit de253bf9c0 - Show all commits

View File

@ -1,14 +1,12 @@
// Copyright 2017-2018 Alexander Luzgarev // Copyright 2017-2018 Alexander Luzgarev
using System; using System;
using System.Linq;
using System.Numerics;
using System.Text; using System.Text;
namespace MatFileHandler namespace MatFileHandler
{ {
/// <summary> /// <summary>
/// A better interface for using datetime objects. /// A better interface for using string objects.
/// </summary> /// </summary>
public class StringAdapter public class StringAdapter
{ {
@ -18,7 +16,7 @@ namespace MatFileHandler
/// <summary> /// <summary>
/// Initializes a new instance of the <see cref="StringAdapter"/> class. /// Initializes a new instance of the <see cref="StringAdapter"/> class.
/// </summary> /// </summary>
/// <param name="array">Source datetime object.</param> /// <param name="array">Source string object.</param>
public StringAdapter(IArray array) public StringAdapter(IArray array)
{ {
var matObject = array as IMatObject; var matObject = array as IMatObject;
@ -33,7 +31,7 @@ namespace MatFileHandler
} }
/// <summary> /// <summary>
/// Gets datetime array dimensions. /// Gets string array dimensions.
/// </summary> /// </summary>
public int[] Dimensions => dimensions; public int[] Dimensions => dimensions;