Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gcs0281.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 86513b15d7cc76ca997242113a35fa7e674c29c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// gcs0281.cs: Friend access was granted to `gcs0281, PublicKeyToken=27576a8182a18822', but the output assembly is named `gcs0281, Version=0.0.0.0, Culture=neutral'. Try adding a reference to `gcs0281, PublicKeyToken=27576a8182a18822' or change the output assembly name to match it
// Line: 0
// Compiler options: -r:CSFriendAssembly-lib.dll

using System;

public class Test
{
	static void Main ()
	{
		FriendClass.MyMethod ();
	}
}