AppDomainToolkit.AssemblyTarget.FromDynamic C# (CSharp) Метод

FromDynamic() публичный статический Метод

Creates a new assembly target for the given dynamic assembly.
public static FromDynamic ( string fullName ) : IAssemblyTarget
fullName string /// The full name of the assembly. ///
Результат IAssemblyTarget
        public static IAssemblyTarget FromDynamic(string fullName)
        {
            if (fullName == null)
            {
                throw new ArgumentNullException("fullName", "FullName cannot be null!");
            }

            return new AssemblyTarget()
            {
                CodeBase = null,
                Location = null,
                FullName = fullName,
                IsDynamic = true
            };
        }