Skip to content

Instantly share code, notes, and snippets.

@amay077
Last active January 7, 2016 12:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amay077/8b124f4ed52eded5420c to your computer and use it in GitHub Desktop.
Save amay077/8b124f4ed52eded5420c to your computer and use it in GitHub Desktop.
Generate ReactiveProperty and ReactiveCommand code template for Xamarin Studio
public ReactiveProperty<$type$> $name$ { get; } = new ReactiveProperty<$type$>();
private readonly ReactiveProperty<$type$> $name$ = new ReactiveProperty<$type$>();
public ReadOnlyReactiveProperty<$type$> $name$
{
get { return this.$name$.ToReadOnlyReactiveProperty(); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment