Axiom.Demos.Configuration.EngineConfig.FilePathDataTable.AddFilePathRow C# (CSharp) Метод

AddFilePathRow() приватный Метод

private AddFilePathRow ( string group, string src, string type ) : FilePathRow
group string
src string
type string
Результат FilePathRow
			public FilePathRow AddFilePathRow(string group, string src, string type) {
				FilePathRow rowFilePathRow = ((FilePathRow)(this.NewRow()));
				object[] columnValuesArray = new object[] {
						group,
						src,
						type};
				rowFilePathRow.ItemArray = columnValuesArray;
				this.Rows.Add(rowFilePathRow);
				return rowFilePathRow;
			}
			

Same methods

EngineConfig.FilePathDataTable::AddFilePathRow ( FilePathRow row ) : void