代码搜索结果
找到约 10,000 项符合
Assembly 的代码
defaultobjectcreator.cs
//
//
//
//
// $Revisi
reflectionloader.cs
//
//
//
//
//
19.1.txt
Listing 19.1 Displaying Information About Assembly Identity
// get the AssemblyName reference for the required assembly –
// in this case the currently executing assembly
Assembly execAssembly = As
19.2.txt
Listing 19.2 Main() Method That Loads Another Assembly
static void Main(string[] args)
{
Console.WriteLine(AppDomain.CurrentDomain.FriendlyName + “: “ + args[0]);
Assembly assembly = Assembly.Load
ch6_2.cs
using System;
using System.Reflection;
class CH6_2
{
public static void Main( string[] args)
{
if ( args.Length > 0 )
ShowClasses( args[0] );
}
public stati
ch6_1.cs
using System;
using System.Reflection;
class CH6_1
{
public static void ShowInterfaces( Type t )
{
Type[] interfaces = t.GetInterfaces();
Console.WriteLine("Implemented
assemblyinfo.vb
Imports System
Imports System.Reflection
Imports System.Runtime.InteropServices
' General Information about an assembly is controlled through the following
' set of attributes. Change these at
assemblyinfo.vb
Imports System
Imports System.Reflection
Imports System.Runtime.InteropServices
' General Information about an assembly is controlled through the following
' set of attributes. Change these at
assemblyinfo.vb
Imports System
Imports System.Reflection
Imports System.Runtime.InteropServices
' General Information about an assembly is controlled through the following
' set of attributes. Change these at
assemblyinfo.vb
Imports System
Imports System.Reflection
Imports System.Runtime.InteropServices
' General Information about an assembly is controlled through the following
' set of attributes. Change these at