⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 reference.cs

📁 本作目的是介绍一个工具
💻 CS
📖 第 1 页 / 共 5 页
字号:
                return this.strCityField;
            }
            set {
                if ((object.ReferenceEquals(this.strCityField, value) != true)) {
                    this.strCityField = value;
                    this.RaisePropertyChanged("strCity");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string strCompanyName {
            get {
                return this.strCompanyNameField;
            }
            set {
                if ((object.ReferenceEquals(this.strCompanyNameField, value) != true)) {
                    this.strCompanyNameField = value;
                    this.RaisePropertyChanged("strCompanyName");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string strContactName {
            get {
                return this.strContactNameField;
            }
            set {
                if ((object.ReferenceEquals(this.strContactNameField, value) != true)) {
                    this.strContactNameField = value;
                    this.RaisePropertyChanged("strContactName");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string strContactTitle {
            get {
                return this.strContactTitleField;
            }
            set {
                if ((object.ReferenceEquals(this.strContactTitleField, value) != true)) {
                    this.strContactTitleField = value;
                    this.RaisePropertyChanged("strContactTitle");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string strCountry {
            get {
                return this.strCountryField;
            }
            set {
                if ((object.ReferenceEquals(this.strCountryField, value) != true)) {
                    this.strCountryField = value;
                    this.RaisePropertyChanged("strCountry");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string strFax {
            get {
                return this.strFaxField;
            }
            set {
                if ((object.ReferenceEquals(this.strFaxField, value) != true)) {
                    this.strFaxField = value;
                    this.RaisePropertyChanged("strFax");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string strPhone {
            get {
                return this.strPhoneField;
            }
            set {
                if ((object.ReferenceEquals(this.strPhoneField, value) != true)) {
                    this.strPhoneField = value;
                    this.RaisePropertyChanged("strPhone");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string strPostalCode {
            get {
                return this.strPostalCodeField;
            }
            set {
                if ((object.ReferenceEquals(this.strPostalCodeField, value) != true)) {
                    this.strPostalCodeField = value;
                    this.RaisePropertyChanged("strPostalCode");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string strRegion {
            get {
                return this.strRegionField;
            }
            set {
                if ((object.ReferenceEquals(this.strRegionField, value) != true)) {
                    this.strRegionField = value;
                    this.RaisePropertyChanged("strRegion");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public bool ysnSelected {
            get {
                return this.ysnSelectedField;
            }
            set {
                if ((this.ysnSelectedField.Equals(value) != true)) {
                    this.ysnSelectedField = value;
                    this.RaisePropertyChanged("ysnSelected");
                }
            }
        }
        
        public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
        
        protected void RaisePropertyChanged(string propertyName) {
            System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
            if ((propertyChanged != null)) {
                propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
            }
        }
    }
    
    [System.Diagnostics.DebuggerStepThroughAttribute()]
    [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "3.0.0.0")]
    [System.Runtime.Serialization.DataContractAttribute(Name="CEmployeesData", Namespace="http://schemas.datacontract.org/2004/07/ZSampleServiceLibrary")]
    public partial class CEmployeesData : object, System.ComponentModel.INotifyPropertyChanged {
        
        private System.DateTime dtmBirthDateField;
        
        private System.DateTime dtmHireDateField;
        
        private int lngReportsToField;
        
        private string memNotesField;
        
        private string pkeyEmployeeIDField;
        
        private string strAddressField;
        
        private string strCityField;
        
        private string strCountryField;
        
        private string strExtensionField;
        
        private string strFirstNameField;
        
        private string strHomePhoneField;
        
        private string strLastNameField;
        
        private string strPostalCodeField;
        
        private string strRegionField;
        
        private string strTitleField;
        
        private string strTitleOfCourtesyField;
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public System.DateTime dtmBirthDate {
            get {
                return this.dtmBirthDateField;
            }
            set {
                if ((this.dtmBirthDateField.Equals(value) != true)) {
                    this.dtmBirthDateField = value;
                    this.RaisePropertyChanged("dtmBirthDate");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public System.DateTime dtmHireDate {
            get {
                return this.dtmHireDateField;
            }
            set {
                if ((this.dtmHireDateField.Equals(value) != true)) {
                    this.dtmHireDateField = value;
                    this.RaisePropertyChanged("dtmHireDate");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public int lngReportsTo {
            get {
                return this.lngReportsToField;
            }
            set {
                if ((this.lngReportsToField.Equals(value) != true)) {
                    this.lngReportsToField = value;
                    this.RaisePropertyChanged("lngReportsTo");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string memNotes {
            get {
                return this.memNotesField;
            }
            set {
                if ((object.ReferenceEquals(this.memNotesField, value) != true)) {
                    this.memNotesField = value;
                    this.RaisePropertyChanged("memNotes");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string pkeyEmployeeID {
            get {
                return this.pkeyEmployeeIDField;
            }
            set {
                if ((object.ReferenceEquals(this.pkeyEmployeeIDField, value) != true)) {
                    this.pkeyEmployeeIDField = value;
                    this.RaisePropertyChanged("pkeyEmployeeID");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string strAddress {
            get {
                return this.strAddressField;
            }
            set {
                if ((object.ReferenceEquals(this.strAddressField, value) != true)) {
                    this.strAddressField = value;
                    this.RaisePropertyChanged("strAddress");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string strCity {
            get {
                return this.strCityField;
            }
            set {
                if ((object.ReferenceEquals(this.strCityField, value) != true)) {
                    this.strCityField = value;
                    this.RaisePropertyChanged("strCity");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string strCountry {
            get {
                return this.strCountryField;
            }
            set {
                if ((object.ReferenceEquals(this.strCountryField, value) != true)) {
                    this.strCountryField = value;
                    this.RaisePropertyChanged("strCountry");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string strExtension {
            get {
                return this.strExtensionField;
            }
            set {
                if ((object.ReferenceEquals(this.strExtensionField, value) != true)) {
                    this.strExtensionField = value;
                    this.RaisePropertyChanged("strExtension");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string strFirstName {
            get {
                return this.strFirstNameField;
            }
            set {
                if ((object.ReferenceEquals(this.strFirstNameField, value) != true)) {
                    this.strFirstNameField = value;
                    this.RaisePropertyChanged("strFirstName");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string strHomePhone {
            get {
                return this.strHomePhoneField;
            }
            set {
                if ((object.ReferenceEquals(this.strHomePhoneField, value) != true)) {
                    this.strHomePhoneField = value;
                    this.RaisePropertyChanged("strHomePhone");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string strLastName {
            get {
                return this.strLastNameField;
            }
            set {
                if ((object.ReferenceEquals(this.strLastNameField, value) != true)) {
                    this.strLastNameField = value;
                    this.RaisePropertyChanged("strLastName");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string strPostalCode {
            get {
                return this.strPostalCodeField;
            }
            set {
                if ((object.ReferenceEquals(this.strPostalCodeField, value) != true)) {
                    this.strPostalCodeField = value;
                    this.RaisePropertyChanged("strPostalCode");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string strRegion {
            get {
                return this.strRegionField;
            }
            set {
                if ((object.ReferenceEquals(this.strRegionField, value) != true)) {
                    this.strRegionField = value;
                    this.RaisePropertyChanged("strRegion");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string strTitle {
            get {
                return this.strTitleField;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -