You've already forked linux-packaging-mono
14 lines
200 B
C#
14 lines
200 B
C#
|
|
using System;
|
||
|
|
|
||
|
|
class T {
|
||
|
|
static Foo GetFoo () { return new Foo (); }
|
||
|
|
|
||
|
|
public static void Main ()
|
||
|
|
{
|
||
|
|
string s = GetFoo ().i.ToString ();
|
||
|
|
Console.WriteLine (s);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
struct Foo { public int i; }
|