19234507ba
Former-commit-id: 3494343bcc9ddb42b36b82dd9ae7b69e85e0229f
9 lines
199 B
C#
9 lines
199 B
C#
using System.Linq;
|
|
|
|
class Program {
|
|
public static int Main ()
|
|
{
|
|
var l = (from f in (typeof (Program)).GetFields() select (name: f.Name, offset: 0)).ToList();
|
|
return 0;
|
|
}
|
|
} |