Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
| 12345678910111213141516 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
-
- namespace EmitCreateDynamicProxy
- {
- class DDD : INotifyPropertyChanged
- {
- public event PropertyChangedEventHandler PropertyChanged;
-
- public string Name { get => _Name; set { _Name = value; PropertyChanged?.Invoke(this, new PropertyChangedEventArgs("uuu")); } }
- private string _Name = "";
- }
- }
|