blob: 73a9430e03d6774a0d6b9ac7584a70a4decd45bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// CS0182: An attribute argument must be a constant expression, typeof expression or array creation expression
// Line: 10
using System.Runtime.InteropServices;
class X {
static string dll = "some.dll";
[DllImport (dll)]
extern static void Blah ();
}
|