mirror of https://github.com/icsharpcode/ILSpy.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
1.2 KiB
95 lines
1.2 KiB
<?xml version="1.0" encoding="utf-8"?> |
|
<symbols> |
|
<files> |
|
<file id="1" name="-\C.cs" language="C#" checksumAlgorithm="SHA256"> |
|
<![CDATA[using System; |
|
|
|
internal class C : IDisposable |
|
{ |
|
private int ExpressionProperty => 42; |
|
|
|
private int Property |
|
{ |
|
get |
|
{ |
|
return 0; |
|
} |
|
set |
|
{ |
|
} |
|
} |
|
|
|
private C this[int index] => null; |
|
|
|
private C this[string s] |
|
{ |
|
get |
|
{ |
|
return null; |
|
} |
|
set |
|
{ |
|
} |
|
} |
|
|
|
public event Action Event |
|
{ |
|
add |
|
{ |
|
} |
|
remove |
|
{ |
|
} |
|
} |
|
|
|
public static implicit operator C(int i) |
|
{ |
|
return null; |
|
} |
|
|
|
static C() |
|
{ |
|
} |
|
|
|
public C() |
|
{ |
|
Console.WriteLine(); |
|
} |
|
|
|
~C() |
|
{ |
|
} |
|
|
|
void IDisposable.Dispose() |
|
{ |
|
} |
|
|
|
private static void Main() |
|
{ |
|
C c = new C(); |
|
|
|
c.Event += delegate |
|
{ |
|
}; |
|
_ = c.Property; |
|
_ = c.ExpressionProperty; |
|
_ = c[0]; |
|
_ = c[""]; |
|
|
|
_ = (C)1; |
|
|
|
Local(); |
|
|
|
static void Local() |
|
{ |
|
Console.WriteLine(); |
|
} |
|
} |
|
} |
|
]]></file> |
|
</files> |
|
<methods> |
|
</methods> |
|
<method-spans> |
|
</method-spans> |
|
</symbols> |