LearningEmit
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

DDD.cs 456B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. namespace EmitCreateDynamicProxy
  7. {
  8. class DDD// : INotifyPropertyChanged
  9. {
  10. //public event PropertyChangedEventHandler PropertyChanged;
  11. public string Name { get => _Name; set { _Name = value; } } //PropertyChanged?.Invoke(this, new PropertyChangedEventArgs("Name")); } }
  12. private string _Name = "";
  13. }
  14. }