Beispiel #1
0
 public StringLengthCounterModel()
 {
     this.Text2 =
         Text1
         .Select(x => string.IsNullOrEmpty(x) ? "0文字" : x.Length + "文字")
         .ToReadOnlyReactivePropertySlim();
 }