19 lines
556 B
C#
Raw Permalink Normal View History

2025-05-18 01:04:31 +08:00
// ***********************************************************************
// Assembly : Unity
// Author : Kimch
// Created :
//
// Last Modified By : Kimch
// Last Modified On :
// ***********************************************************************
// <copyright file= "IRow" company=""></copyright>
// <summary></summary>
// ***********************************************************************
public interface IRow
{
int columnCount { get; }
Column GetColumn(string name);
Column GetColumn(int index);
}