System.AppDomain.AppDomain.ApplyPolicy C# (CSharp) 메소드

ApplyPolicy() 개인적인 메소드

private ApplyPolicy ( string assemblyName ) : string
assemblyName string
리턴 string
		public string ApplyPolicy (string assemblyName)
		{
			if (assemblyName == null)
				throw new ArgumentNullException ("assemblyName");
			if (assemblyName.Length == 0) // String.Empty
				throw new ArgumentException ("assemblyName");
			return assemblyName;
		}