public SearchResultItemViewModel(string name, string size, string score) { this.Size = size; this.Score = score; this.ACommand = ReactiveCommand.Create <string, string>( s => new string(s.ToCharArray().Reverse().ToArray())); this._name = ACommand.ToProperty(this, vm => vm.Name, name); }