// *********************************************************************** // Assembly : Unity // Author : Kimch // Created : // // Last Modified By : Kimch // Last Modified On : // *********************************************************************** // // // *********************************************************************** public interface IRow { int columnCount { get; } Column GetColumn(string name); Column GetColumn(int index); }