repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[Wasm] Fix memory override in mono_wasm_add_assembly
[mono-project.git]
/
mcs
/
tests
/
test-tuple-10.cs
blob
82f4e01ec1f53e85be2ba03eb1b742f0cbcfb4ce
1
using
System
.
Linq
;
2
3
class
Program
{
4
public static int
Main
()
5
{
6
var
l
= (
from
f
in
(
typeof
(
Program
)).
GetFields
()
select
(
name
:
f
.
Name
,
offset
:
0
)).
ToList
();
7
return
0
;
8
}
9
}