码迷,mamicode.com
首页 >  
搜索关键字:reflection    ( 912个结果
通过拖拽prefab来存储相应的路径
1 using UnityEngine; 2 using System.Collections; 3 using UnityEditor; 4 using System.Reflection; 5 6 [CustomPropertyDrawer(typeof(ObjectToPathAttrib.....
分类:其他好文   时间:2014-09-04 13:08:49    阅读次数:228
浅谈C# Reflection用处
乱侃 作为一名新手,一直没有勇气去写一篇分享。原因有很多:诸如:自己水平有限、语言表达不准确、写出的东西没有一点技术点被人嘲笑。今天在公司听了内部员工的一个分享,其中最重要的一点是:提升自身水平的最佳的途径就是——交流。不管你是通过什么途径,交流也好、整理成文字分享也好等等都是很好的方式。故此...
分类:其他好文   时间:2014-09-04 00:05:07    阅读次数:244
黄聪:C#操作Word表格的常见操作(转)
几种常见C#操作Word表格操作有哪些呢?让我们来看看具体的实例演示:boolsaveChange=false; //C#操作Word表格操作objectmissing=System.Reflection.Missing.Value; objecttemplate=(object)templateF...
分类:其他好文   时间:2014-08-30 17:39:09    阅读次数:141
C# Reflection BindingFlags
下列 BindingFlags 筛选标志可用于定义包含在搜索中的成员: 为了获取返回值,必须指定 BindingFlags.Instance 或 BindingFlags.Static。 指定 BindingFlags.Public 可在搜索中包含公共成员。 指定 BindingFlags.NonP...
分类:其他好文   时间:2014-08-29 12:57:27    阅读次数:167
C# Reflection Type/MethodInfo
在C#的反射中,可以通过Type来执行类中的某个方法,也可以通过MethodInfo来执行方法下面的示例中使用了三种方法来执行方法 示例: using System;using System.Reflection; namespace MyReflection{ public class Class...
分类:其他好文   时间:2014-08-29 12:50:17    阅读次数:228
返回集合
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;using System.Data;using System.Reflection;usi...
分类:其他好文   时间:2014-08-27 16:02:28    阅读次数:231
[Java Basics2] Iterable, Socket, Reflection, Proxy
Parent interface of Collection: Iterable InterfaceA class that implements theIterablecan be used with the new for-loop.TheIterableinterface has only o...
分类:编程语言   时间:2014-08-26 19:33:06    阅读次数:272
Java 反射机制
【参阅http://blog.csdn.net/justinavril/article/details/2873664】Reflection是Java 程序开发语言的特征之一,它允许运行中的 Java 程序对自身进行检查,或者说"自审",并能直接操作程序的内部属性。例如,使用它能获得 Java 类中...
分类:编程语言   时间:2014-08-26 13:27:26    阅读次数:295
SqlHelper
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Configuration; using System.Data.SqlClient; using System.Data; using System.Reflection; namespace LL...
分类:数据库   时间:2014-08-23 11:22:30    阅读次数:269
PowerShell 调用 Oracle.ManagedDataAccess.dll
PowerShell 调用 Oracle.ManagedDataAccess.dll # #PowerShell 调Ì¡Â用®? Oracle.ManagedDataAccess.dll #   [System.Reflection.Assembly]::LoadFrom("C:\oracle\odp.net\managed\common\O...
分类:数据库   时间:2014-08-22 14:30:38    阅读次数:348
912条   上一页 1 ... 81 82 83 84 85 ... 92 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!