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

AssemblyNameProxy.cs « System.Reflection « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cc02533a741c77a16cc421f78dd683efc2e52d4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
// System.Reflection.AssemblyNameProxy.cs
//
// Author: Duncan Mak  (duncan@ximian.com)
//
// (C) Ximian, Inc. http://www.ximian.com
//

using System;

namespace System.Reflection
{
	public class AssemblyNameProxy : MarshalByRefObject
	{
		// Constructor
		public AssemblyNameProxy ()
		{
		}

		// Method
		[MonoTODO]
		public AssemblyName GetAssemblyName (string assemblyFile)
		{
			return null;
		}
	}
}