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

📄 reference.cs

📁 本作目的是介绍一个工具
💻 CS
📖 第 1 页 / 共 5 页
字号:
                if ((object.ReferenceEquals(this.strPhoneField, value) != true)) {
                    this.strPhoneField = value;
                    this.RaisePropertyChanged("strPhone");
                }
            }
        }
        
        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="CSuppliersData", Namespace="http://schemas.datacontract.org/2004/07/ZSampleServiceLibrary")]
    public partial class CSuppliersData : object, System.ComponentModel.INotifyPropertyChanged {
        
        private string pkeySupplierIDField;
        
        private string strAddressField;
        
        private string strCityField;
        
        private string strCompanyNameField;
        
        private string strContactNameField;
        
        private string strContactTitleField;
        
        private string strCountryField;
        
        private string strFaxField;
        
        private string strPhoneField;
        
        private string strPostalCodeField;
        
        private string strRegionField;
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string pkeySupplierID {
            get {
                return this.pkeySupplierIDField;
            }
            set {
                if ((object.ReferenceEquals(this.pkeySupplierIDField, value) != true)) {
                    this.pkeySupplierIDField = value;
                    this.RaisePropertyChanged("pkeySupplierID");
                }
            }
        }
        
        [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 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");
                }
            }
        }
        
        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="CTopicsData", Namespace="http://schemas.datacontract.org/2004/07/ZSampleServiceLibrary")]
    public partial class CTopicsData : object, System.ComponentModel.INotifyPropertyChanged {
        
        private string hrefURLField;
        
        private int intObjectTypeField;
        
        private string memDescriptionField;
        
        private string pkeyQNumberField;
        
        private string strArticleTitleField;
        
        private string strObjectNameField;
        
        private string strObjectsUsedField;
        
        private string strPhoneField;
        
        private string strSampleCategoryField;
        
        private string strTopicField;
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string hrefURL {
            get {
                return this.hrefURLField;
            }
            set {
                if ((object.ReferenceEquals(this.hrefURLField, value) != true)) {
                    this.hrefURLField = value;
                    this.RaisePropertyChanged("hrefURL");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public int intObjectType {
            get {
                return this.intObjectTypeField;
            }
            set {
                if ((this.intObjectTypeField.Equals(value) != true)) {
                    this.intObjectTypeField = value;
                    this.RaisePropertyChanged("intObjectType");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string memDescription {
            get {
                return this.memDescriptionField;
            }
            set {
                if ((object.ReferenceEquals(this.memDescriptionField, value) != true)) {
                    this.memDescriptionField = value;
                    this.RaisePropertyChanged("memDescription");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string pkeyQNumber {
            get {
                return this.pkeyQNumberField;
            }
            set {
                if ((object.ReferenceEquals(this.pkeyQNumberField, value) != true)) {
                    this.pkeyQNumberField = value;
                    this.RaisePropertyChanged("pkeyQNumber");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string strArticleTitle {
            get {
                return this.strArticleTitleField;
            }
            set {
                if ((object.ReferenceEquals(this.strArticleTitleField, value) != true)) {
                    this.strArticleTitleField = value;
                    this.RaisePropertyChanged("strArticleTitle");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string strObjectName {
            get {
                return this.strObjectNameField;
            }
            set {
                if ((object.ReferenceEquals(this.strObjectNameField, value) != true)) {
                    this.strObjectNameField = value;
                    this.RaisePropertyChanged("strObjectName");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string strObjectsUsed {
            get {
                return this.strObjectsUsedField;
            }
            set {
                if ((object.ReferenceEquals(this.strObjectsUsedField, value) != true)) {
                    this.strObjectsUsedField = value;
                    this.RaisePropertyChanged("strObjectsUsed");
                }
            }
        }
        
        [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 strSampleCategory {
            get {
                return this.strSampleCategoryField;
            }
            set {
                if ((object.ReferenceEquals(this.strSampleCategoryField, value) != true)) {
                    this.strSampleCategoryField = value;
                    this.RaisePropertyChanged("strSampleCategory");
                }
            }
        }
        
        [System.Runtime.Serialization.DataMemberAttribute()]
        public string strTopic {
            get {
                return this.strTopicField;
            }
            set {
                if ((object.ReferenceEquals(this.strTopicField, value) != true)) {
                    this.strTopicField = value;
                    this.RaisePropertyChanged("strTopic");
                }
            }
        }
        
        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));
            }
        }

⌨️ 快捷键说明

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