LearningEmit
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

Program.cs 564B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Test
  7. {
  8. class Program
  9. {
  10. static void Main(string[] args)
  11. {
  12. ModelProxy m = new ModelProxy();
  13. m.PropertyChanged += M_PropertyChanged;
  14. m.Name = "333";
  15. Console.ReadLine();
  16. }
  17. private static void M_PropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)
  18. {
  19. Console.WriteLine("Run Run Run");
  20. }
  21. }
  22. }