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
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs0182-16.cs
blob
73a9430e03d6774a0d6b9ac7584a70a4decd45bc
1
// CS0182: An attribute argument must be a constant expression, typeof expression or array creation expression
2
// Line: 10
3
4
using
System
.
Runtime
.
InteropServices
;
5
6
class
X
{
7
static string
dll
=
"some.dll"
;
8
9
[
DllImport
(
dll
)]
10
extern static void
Blah
();
11
}