System.Data.DataViewSettingCollection.this C# (CSharp) Метод

this() публичный Метод

public this ( string tableName ) : DataViewSetting
tableName string
Результат DataViewSetting
        public virtual DataViewSetting this[string tableName]
        {
            get
            {
                DataTable dt = GetTable(tableName);
                if (dt != null)
                {
                    return this[dt];
                }
                return null;
            }
        }

Same methods

DataViewSettingCollection::this ( DataTable table ) : DataViewSetting
DataViewSettingCollection::this ( int index ) : DataViewSetting