回答編集履歴

1

論理反転

2016/07/29 03:58

投稿

ozwk
ozwk

スコア13521

test CHANGED
@@ -20,7 +20,7 @@
20
20
 
21
21
  XTextBoxText
22
22
 
23
- .CombineLatest(YTextBoxText, (x, y) => string.IsNullOrEmpty(x) || string.IsNullOrEmpty(y))
23
+ .CombineLatest(YTextBoxText, (x, y) => !(string.IsNullOrEmpty(x) || string.IsNullOrEmpty(y)))
24
24
 
25
25
  .ToReactiveCommand(false);
26
26