📄 reference.cs
字号:
System.Xml.Schema.XmlSchemaAttribute attribute1 = new System.Xml.Schema.XmlSchemaAttribute();
attribute1.Name = "namespace";
attribute1.FixedValue = ds.Namespace;
type.Attributes.Add(attribute1);
System.Xml.Schema.XmlSchemaAttribute attribute2 = new System.Xml.Schema.XmlSchemaAttribute();
attribute2.Name = "tableTypeName";
attribute2.FixedValue = "CustomersDataTable";
type.Attributes.Add(attribute2);
type.Particle = sequence;
return type;
}
}
public partial class CustomersRow : System.Data.DataRow {
private CustomersDataTable tableCustomers;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
internal CustomersRow(System.Data.DataRowBuilder rb) :
base(rb) {
this.tableCustomers = ((CustomersDataTable)(this.Table));
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string CustomerID {
get {
return ((string)(this[this.tableCustomers.CustomerIDColumn]));
}
set {
this[this.tableCustomers.CustomerIDColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string CompanyName {
get {
return ((string)(this[this.tableCustomers.CompanyNameColumn]));
}
set {
this[this.tableCustomers.CompanyNameColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string ContactName {
get {
try {
return ((string)(this[this.tableCustomers.ContactNameColumn]));
}
catch (System.InvalidCastException e) {
throw new System.Data.StrongTypingException("The value for column \'ContactName\' in table \'Customers\' is DBNull.", e);
}
}
set {
this[this.tableCustomers.ContactNameColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string ContactTitle {
get {
try {
return ((string)(this[this.tableCustomers.ContactTitleColumn]));
}
catch (System.InvalidCastException e) {
throw new System.Data.StrongTypingException("The value for column \'ContactTitle\' in table \'Customers\' is DBNull.", e);
}
}
set {
this[this.tableCustomers.ContactTitleColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string Address {
get {
try {
return ((string)(this[this.tableCustomers.AddressColumn]));
}
catch (System.InvalidCastException e) {
throw new System.Data.StrongTypingException("The value for column \'Address\' in table \'Customers\' is DBNull.", e);
}
}
set {
this[this.tableCustomers.AddressColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string City {
get {
try {
return ((string)(this[this.tableCustomers.CityColumn]));
}
catch (System.InvalidCastException e) {
throw new System.Data.StrongTypingException("The value for column \'City\' in table \'Customers\' is DBNull.", e);
}
}
set {
this[this.tableCustomers.CityColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string Region {
get {
try {
return ((string)(this[this.tableCustomers.RegionColumn]));
}
catch (System.InvalidCastException e) {
throw new System.Data.StrongTypingException("The value for column \'Region\' in table \'Customers\' is DBNull.", e);
}
}
set {
this[this.tableCustomers.RegionColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string PostalCode {
get {
try {
return ((string)(this[this.tableCustomers.PostalCodeColumn]));
}
catch (System.InvalidCastException e) {
throw new System.Data.StrongTypingException("The value for column \'PostalCode\' in table \'Customers\' is DBNull.", e);
}
}
set {
this[this.tableCustomers.PostalCodeColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string Country {
get {
try {
return ((string)(this[this.tableCustomers.CountryColumn]));
}
catch (System.InvalidCastException e) {
throw new System.Data.StrongTypingException("The value for column \'Country\' in table \'Customers\' is DBNull.", e);
}
}
set {
this[this.tableCustomers.CountryColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string Phone {
get {
try {
return ((string)(this[this.tableCustomers.PhoneColumn]));
}
catch (System.InvalidCastException e) {
throw new System.Data.StrongTypingException("The value for column \'Phone\' in table \'Customers\' is DBNull.", e);
}
}
set {
this[this.tableCustomers.PhoneColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public string Fax {
get {
try {
return ((string)(this[this.tableCustomers.FaxColumn]));
}
catch (System.InvalidCastException e) {
throw new System.Data.StrongTypingException("The value for column \'Fax\' in table \'Customers\' is DBNull.", e);
}
}
set {
this[this.tableCustomers.FaxColumn] = value;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsContactNameNull() {
return this.IsNull(this.tableCustomers.ContactNameColumn);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetContactNameNull() {
this[this.tableCustomers.ContactNameColumn] = System.Convert.DBNull;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsContactTitleNull() {
return this.IsNull(this.tableCustomers.ContactTitleColumn);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetContactTitleNull() {
this[this.tableCustomers.ContactTitleColumn] = System.Convert.DBNull;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsAddressNull() {
return this.IsNull(this.tableCustomers.AddressColumn);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetAddressNull() {
this[this.tableCustomers.AddressColumn] = System.Convert.DBNull;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsCityNull() {
return this.IsNull(this.tableCustomers.CityColumn);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetCityNull() {
this[this.tableCustomers.CityColumn] = System.Convert.DBNull;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsRegionNull() {
return this.IsNull(this.tableCustomers.RegionColumn);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetRegionNull() {
this[this.tableCustomers.RegionColumn] = System.Convert.DBNull;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsPostalCodeNull() {
return this.IsNull(this.tableCustomers.PostalCodeColumn);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetPostalCodeNull() {
this[this.tableCustomers.PostalCodeColumn] = System.Convert.DBNull;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsCountryNull() {
return this.IsNull(this.tableCustomers.CountryColumn);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetCountryNull() {
this[this.tableCustomers.CountryColumn] = System.Convert.DBNull;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsPhoneNull() {
return this.IsNull(this.tableCustomers.PhoneColumn);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetPhoneNull() {
this[this.tableCustomers.PhoneColumn] = System.Convert.DBNull;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public bool IsFaxNull() {
return this.IsNull(this.tableCustomers.FaxColumn);
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public void SetFaxNull() {
this[this.tableCustomers.FaxColumn] = System.Convert.DBNull;
}
}
public class CustomersRowChangeEvent : System.EventArgs {
private CustomersRow eventRow;
private System.Data.DataRowAction eventAction;
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public CustomersRowChangeEvent(CustomersRow row, System.Data.DataRowAction action) {
this.eventRow = row;
this.eventAction = action;
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public CustomersRow Row {
get {
return this.eventRow;
}
}
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
public System.Data.DataRowAction Action {
get {
return this.eventAction;
}
}
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -