DotNetWorkQueue.Transport.PostgreSQL.Schema.Table.Table C# (CSharp) Метод

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

Initializes a new instance of the Table class.
public Table ( string name ) : System.Collections.Generic
name string The name.
Результат System.Collections.Generic
		public Table(string name) 
        {
			Name = name;
            Columns = new Columns();
            Constraints = new List<Constraint>();
		}
        #endregion