?? sda.cs
字號(hào):
internal DataColumn 電話(huà)Column {
get {
return this.column電話(huà);
}
}
internal DataColumn 郵箱Column {
get {
return this.column郵箱;
}
}
internal DataColumn 家庭地址Column {
get {
return this.column家庭地址;
}
}
public _TableRow this[int index] {
get {
return ((_TableRow)(this.Rows[index]));
}
}
public event _TableRowChangeEventHandler _TableRowChanged;
public event _TableRowChangeEventHandler _TableRowChanging;
public event _TableRowChangeEventHandler _TableRowDeleted;
public event _TableRowChangeEventHandler _TableRowDeleting;
public void Add_TableRow(_TableRow row) {
this.Rows.Add(row);
}
public _TableRow Add_TableRow(string myimname, System.Byte[] myimdata, string myimtype, string 姓名, string 性別, string 出生年月, string 籍貫, string 種族, string 政治面貌, string 學(xué)歷, string 職務(wù), string 電話(huà), string 郵箱, string 家庭地址) {
_TableRow row_TableRow = ((_TableRow)(this.NewRow()));
row_TableRow.ItemArray = new object[] {
null,
myimname,
myimdata,
myimtype,
姓名,
性別,
出生年月,
籍貫,
種族,
政治面貌,
學(xué)歷,
職務(wù),
電話(huà),
郵箱,
家庭地址};
this.Rows.Add(row_TableRow);
return row_TableRow;
}
public _TableRow FindByids(int ids) {
return ((_TableRow)(this.Rows.Find(new object[] {
ids})));
}
public System.Collections.IEnumerator GetEnumerator() {
return this.Rows.GetEnumerator();
}
public override DataTable Clone() {
_TableDataTable cln = ((_TableDataTable)(base.Clone()));
cln.InitVars();
return cln;
}
protected override DataTable CreateInstance() {
return new _TableDataTable();
}
internal void InitVars() {
this.columnids = this.Columns["ids"];
this.columnmyimname = this.Columns["myimname"];
this.columnmyimdata = this.Columns["myimdata"];
this.columnmyimtype = this.Columns["myimtype"];
this.column姓名 = this.Columns["姓名"];
this.column性別 = this.Columns["性別"];
this.column出生年月 = this.Columns["出生年月"];
this.column籍貫 = this.Columns["籍貫"];
this.column種族 = this.Columns["種族"];
this.column政治面貌 = this.Columns["政治面貌"];
this.column學(xué)歷 = this.Columns["學(xué)歷"];
this.column職務(wù) = this.Columns["職務(wù)"];
this.column電話(huà) = this.Columns["電話(huà)"];
this.column郵箱 = this.Columns["郵箱"];
this.column家庭地址 = this.Columns["家庭地址"];
}
private void InitClass() {
this.columnids = new DataColumn("ids", typeof(int), null, System.Data.MappingType.Element);
this.Columns.Add(this.columnids);
this.columnmyimname = new DataColumn("myimname", typeof(string), null, System.Data.MappingType.Element);
this.Columns.Add(this.columnmyimname);
this.columnmyimdata = new DataColumn("myimdata", typeof(System.Byte[]), null, System.Data.MappingType.Element);
this.Columns.Add(this.columnmyimdata);
this.columnmyimtype = new DataColumn("myimtype", typeof(string), null, System.Data.MappingType.Element);
this.Columns.Add(this.columnmyimtype);
this.column姓名 = new DataColumn("姓名", typeof(string), null, System.Data.MappingType.Element);
this.Columns.Add(this.column姓名);
this.column性別 = new DataColumn("性別", typeof(string), null, System.Data.MappingType.Element);
this.Columns.Add(this.column性別);
this.column出生年月 = new DataColumn("出生年月", typeof(string), null, System.Data.MappingType.Element);
this.Columns.Add(this.column出生年月);
this.column籍貫 = new DataColumn("籍貫", typeof(string), null, System.Data.MappingType.Element);
this.Columns.Add(this.column籍貫);
this.column種族 = new DataColumn("種族", typeof(string), null, System.Data.MappingType.Element);
this.Columns.Add(this.column種族);
this.column政治面貌 = new DataColumn("政治面貌", typeof(string), null, System.Data.MappingType.Element);
this.Columns.Add(this.column政治面貌);
this.column學(xué)歷 = new DataColumn("學(xué)歷", typeof(string), null, System.Data.MappingType.Element);
this.Columns.Add(this.column學(xué)歷);
this.column職務(wù) = new DataColumn("職務(wù)", typeof(string), null, System.Data.MappingType.Element);
this.Columns.Add(this.column職務(wù));
this.column電話(huà) = new DataColumn("電話(huà)", typeof(string), null, System.Data.MappingType.Element);
this.Columns.Add(this.column電話(huà));
this.column郵箱 = new DataColumn("郵箱", typeof(string), null, System.Data.MappingType.Element);
this.Columns.Add(this.column郵箱);
this.column家庭地址 = new DataColumn("家庭地址", typeof(string), null, System.Data.MappingType.Element);
this.Columns.Add(this.column家庭地址);
this.Constraints.Add(new UniqueConstraint("Constraint1", new DataColumn[] {
this.columnids}, true));
this.columnids.AutoIncrement = true;
this.columnids.AllowDBNull = false;
this.columnids.ReadOnly = true;
this.columnids.Unique = true;
}
public _TableRow New_TableRow() {
return ((_TableRow)(this.NewRow()));
}
protected override DataRow NewRowFromBuilder(DataRowBuilder builder) {
return new _TableRow(builder);
}
protected override System.Type GetRowType() {
return typeof(_TableRow);
}
protected override void OnRowChanged(DataRowChangeEventArgs e) {
base.OnRowChanged(e);
if ((this._TableRowChanged != null)) {
this._TableRowChanged(this, new _TableRowChangeEvent(((_TableRow)(e.Row)), e.Action));
}
}
protected override void OnRowChanging(DataRowChangeEventArgs e) {
base.OnRowChanging(e);
if ((this._TableRowChanging != null)) {
this._TableRowChanging(this, new _TableRowChangeEvent(((_TableRow)(e.Row)), e.Action));
}
}
protected override void OnRowDeleted(DataRowChangeEventArgs e) {
base.OnRowDeleted(e);
if ((this._TableRowDeleted != null)) {
this._TableRowDeleted(this, new _TableRowChangeEvent(((_TableRow)(e.Row)), e.Action));
}
}
protected override void OnRowDeleting(DataRowChangeEventArgs e) {
base.OnRowDeleting(e);
if ((this._TableRowDeleting != null)) {
this._TableRowDeleting(this, new _TableRowChangeEvent(((_TableRow)(e.Row)), e.Action));
}
}
public void Remove_TableRow(_TableRow row) {
this.Rows.Remove(row);
}
}
[System.Diagnostics.DebuggerStepThrough()]
public class _TableRow : DataRow {
private _TableDataTable table_Table;
internal _TableRow(DataRowBuilder rb) :
base(rb) {
this.table_Table = ((_TableDataTable)(this.Table));
}
public int ids {
get {
return ((int)(this[this.table_Table.idsColumn]));
}
set {
this[this.table_Table.idsColumn] = value;
}
}
public string myimname {
get {
try {
return ((string)(this[this.table_Table.myimnameColumn]));
}
catch (InvalidCastException e) {
throw new StrongTypingException("無(wú)法獲取值,因?yàn)樗?DBNull。", e);
}
}
set {
this[this.table_Table.myimnameColumn] = value;
}
}
public System.Byte[] myimdata {
get {
try {
return ((System.Byte[])(this[this.table_Table.myimdataColumn]));
}
catch (InvalidCastException e) {
throw new StrongTypingException("無(wú)法獲取值,因?yàn)樗?DBNull。", e);
}
}
set {
this[this.table_Table.myimdataColumn] = value;
}
}
public string myimtype {
get {
try {
return ((string)(this[this.table_Table.myimtypeColumn]));
}
catch (InvalidCastException e) {
throw new StrongTypingException("無(wú)法獲取值,因?yàn)樗?DBNull。", e);
}
}
set {
this[this.table_Table.myimtypeColumn] = value;
}
}
public string 姓名 {
get {
try {
return ((string)(this[this.table_Table.姓名Column]));
}
catch (InvalidCastException e) {
throw new StrongTypingException("無(wú)法獲取值,因?yàn)樗?DBNull。", e);
}
}
set {
this[this.table_Table.姓名Column] = value;
}
}
public string 性別 {
get {
try {
return ((string)(this[this.table_Table.性別Column]));
}
catch (InvalidCastException e) {
throw new StrongTypingException("無(wú)法獲取值,因?yàn)樗?DBNull。", e);
}
}
set {
this[this.table_Table.性別Column] = value;
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -