示例#1
0
 /// <summary>
 /// Imports a table with header line into the entity.
 /// </summary>
 /// <param name="entity">The entity.</param>
 /// <param name="table">The text.</param>
 public static void ImportTable([NotNull] this ResourceEntity entity, [NotNull][ItemNotNull] IList <IList <string> > table)
 {
     entity.ImportTable(_fixedColumnHeaders, table).Apply();
 }
示例#2
0
 /// <summary>
 /// Imports a table with header line into the entity.
 /// </summary>
 /// <param name="entity">The entity.</param>
 /// <param name="table">The text.</param>
 public static void ImportTable(this ResourceEntity entity, IList <IList <string> > table)
 {
     entity.ImportTable(_fixedColumnHeaders, table).Apply();
 }