代码搜索:reflection
找到约 10,000 项符合「reflection」的源代码
代码结果 10,000
www.eeworm.com/read/153528/5649610
cs class1.cs
using System;
using System.Reflection;
public class Apple
{
public int nSeeds;
public void Ripen()
{
}
}
public class TypeOfApp
{
[STAThread]
static void Main(string[] args)
www.eeworm.com/read/172540/9702803
cs iajaxprocessor.cs
using System;
using System.Web;
using System.Reflection;
namespace AjaxPro
{
public abstract class IAjaxProcessor
{
protected HttpContext context;
protected Type type;
protected Met
www.eeworm.com/read/172540/9702812
cs xmlhttprequestprocessor.cs
using System;
using System.Web;
using System.Reflection;
using System.IO;
namespace AjaxPro
{
internal class XmlHttpRequestProcessor : IAjaxProcessor
{
private int hashCode;
interna
www.eeworm.com/read/171439/9755314
cs ch6_3.cs
using System;
using System.Reflection;
interface IMyInterface
{
void PrintAString( string s );
void PrintAnInteger( int i );
void PrintSomeNumbers( string desc, int i, double d);
www.eeworm.com/read/101985/15795608
cs parser.cs
using System;
using System.Collections;
using System.Reflection;
namespace ArithMetic
{
public delegate void FunctionHandler(object sender,FunctionEventArgs e);
public delegate void E
www.eeworm.com/read/389531/8515791
cs assemblyinfo.cs
using System.Reflection;
using System.Runtime.CompilerServices;
[assembly: AssemblyTitle("IIsAdmin.NET")]
[assembly: AssemblyDescription("Tool for creating multiple sites in IIs under Windows XP.
www.eeworm.com/read/430096/8766475
java classtypecreator22.java
// generics/ClassTypeCreator22.java
// TIJ4 Chapter Generics, Exercise 22, page 667
/* Use a type tag along with reflection to create a method that uses the
* argument version of newInstance() to
www.eeworm.com/read/187205/8843775
cs assemblyinfo.cs
using System.Reflection;
using System.Runtime.CompilerServices;
[assembly: AssemblyVersion(Consts.MonoVersion)]
[assembly: AssemblyTitle ("Mono C# Compiler")]
[assembly: AssemblyDescription ("Mono C#
www.eeworm.com/read/187205/8843821
cs modifiers.cs
//
// modifiers.cs: Modifier handling.
//
using System;
using System.Reflection;
namespace Mono.CSharp {
public class Modifiers {
//
// The ordering of the following 4 constants
// has been
www.eeworm.com/read/187205/8843956
cs support.cs
//
// support.cs: Support routines to work around the fact that System.Reflection.Emit
// can not introspect types that are being constructed
//
// Author:
// Miguel de Icaza (miguel@ximian.com)
//