w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git] / mcs / errors / cs7042.cs
blobefebf84dc61bc25865981da5072ee761ff5b9466
1 // CS7042: The DllImport attribute cannot be applied to a method that is generic or contained in a generic type
2 // Line: 9
4 using System.Runtime.InteropServices;
6 public class C<T>
8 [DllImport ("my.dll")]
9 static extern void Foo ();