You've already forked linux-packaging-mono
15 lines
148 B
C#
15 lines
148 B
C#
![]() |
using System.IO;
|
||
|
|
||
|
class Foo
|
||
|
{
|
||
|
~Foo()
|
||
|
{
|
||
|
StreamWriter.Null.WriteLine("Finalize");
|
||
|
}
|
||
|
|
||
|
public static void Main ()
|
||
|
{
|
||
|
new Foo ();
|
||
|
}
|
||
|
}
|