Adf.Core.Data.TableDescriber.New C# (CSharp) Метод

New() публичный статический Метод

Creates a new instance of the TableDescriber class with the specified table name and DataSources object.
public static New ( string tableName, DataSources datasource ) : TableDescriber
tableName string The name of a table.
datasource DataSources Initialize the connection by .
Результат TableDescriber
        public static TableDescriber New(string tableName, DataSources datasource)
        {
            return new TableDescriber(tableName, datasource);
        }