22 lines
344 B
Text
22 lines
344 B
Text
using System;
|
|
|
|
class Example : IDisposable
|
|
{
|
|
string Method(int RIGHT)
|
|
{
|
|
new Example();
|
|
new Example(
|
|
);
|
|
new Example { };
|
|
using (this)
|
|
{
|
|
}
|
|
var def =
|
|
this is default(
|
|
Example);
|
|
|
|
return "ChangeMe";
|
|
}
|
|
|
|
public void Dispose() {}
|
|
}
|