You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
626 B
Plaintext
36 lines
626 B
Plaintext
15 years ago
|
<clips name="C#" scheme="csharp">
|
||
|
<clip name="class" shortcut="cl">/// <summary>
|
||
|
///
|
||
|
/// </summary>
|
||
|
public class |
|
||
|
{
|
||
|
|
||
|
}</clip><clip name="method" shortcut="m">/// <summary>
|
||
|
///
|
||
|
/// </summary>
|
||
|
public void |()
|
||
|
{
|
||
|
|
||
|
}</clip><clip name="property" shortcut="prop">private | x;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Gets or sets
|
||
|
/// </summary>
|
||
|
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>
|