[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0281.cs
1 // CS0281: Friend access was granted to `cs0281, PublicKeyToken=27576a8182a18822', but the output assembly is named `cs0281, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null'. Try adding a reference to `cs0281, PublicKeyToken=27576a8182a18822' or change the output assembly name to match it
2 // Line: 0
3 // Compiler options: -r:CSFriendAssembly-lib.dll
4
5 using System;
6
7 public class Test
8 {
9         static void Main ()
10         {
11                 FriendClass.MyMethod ();
12         }
13 }
14