Skip to content

Instantly share code, notes, and snippets.

@HassakuTb
Last active July 17, 2018 07:01
Show Gist options
  • Save HassakuTb/60ed907eb05f9fa73dadc0ae02dc34f4 to your computer and use it in GitHub Desktop.
Save HassakuTb/60ed907eb05f9fa73dadc0ae02dc34f4 to your computer and use it in GitHub Desktop.
CS Snipet ReadOnlyReactiveProperty definition
<?xml version="1.0" encoding="utf-8" ?>
<CodeSnippets xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
<CodeSnippet Format="1.0.0">
<Header>
<Title>rrp</Title>
<Shortcut>rrp</Shortcut>
<Description>ReadOnly Reactive Property interface definition</Description>
<Author></Author>
</Header>
<Snippet>
<Declarations>
<Literal Editable="true">
<ID>type</ID>
<ToolTip>プロパティ型</ToolTip>
<Default>Unit</Default></Literal>
<Literal Editable="true">
<ID>prop</ID>
<ToolTip>プロパティ名</ToolTip>
<Default>Prop</Default></Literal>
</Declarations>
<Code Language="csharp"><![CDATA[IReadOnlyReactiveProperty<$end$$type$> $prop$ { get; }$end$]]></Code>
</Snippet>
</CodeSnippet>
</CodeSnippets>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment