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
[corlib] Fix a few NSLogWriter issues. (#13799)
[mono-project.git]
/
mcs
/
tests
/
dtest-052.cs
blob
7fa9e06374fb24cbcd0e1571bebc6655868acc14
1
// Compiler options: -r:dtest-052-lib.dll
2
3
// Importing of complex dynamic arguments
4
5
class
A
6
{
7
public void
Method
(
DynamicReference d
)
8
{
9
d
.
DynType
.
Value
.
AnyMethod
();
10
d
.
DynArray
.
Value
[
0
][
0
].
AnyMethod
();
11
}
12
13
public static void
Main
()
14
{
15
}
16
}