1
0
Fork 0
This repository has been archived on 2019-12-23. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
arduinisten/arduino-0018-windows/hardware/tools/avr/pn/clips/csharpscheme.clips
2010-03-30 21:53:44 +02:00

36 lines
No EOL
626 B
Text

<clips name="C#" scheme="csharp">
<clip name="class" shortcut="cl">/// &lt;summary&gt;
///
/// &lt;/summary&gt;
public class |
{
}</clip><clip name="method" shortcut="m">/// &lt;summary&gt;
///
/// &lt;/summary&gt;
public void |()
{
}</clip><clip name="property" shortcut="prop">private | x;
/// &lt;summary&gt;
/// Gets or sets
/// &lt;/summary&gt;
public type X
{
get { return this.x; }
set { this.x = value; }
}</clip><clip name="interface" shortcut="iface">public interface I|
{
}</clip><clip name="if" shortcut="if">if (|)
{
}</clip><clip name="if else" shortcut="ife">if (|)
{
}
else
{
}</clip></clips>