码迷,mamicode.com
首页 > 其他好文 > 详细

嵌套类的访问

时间:2015-03-13 16:19:09      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:

嵌套类的访问

对于以下数据,如何在运行时通过字符串来得到静态变量UIPath的值。

1 public class GameMainMenu : UIClass
2 {
3     public class JetPack : UIClass
4     {
5         public static UIPath UIPath = new UIPath("UIPrefabs/GameMainMenu/JetPack/JetPack.prefab");
6     }
7 }

像下面这样即可。

BindingFlags flag = BindingFlags.Static | BindingFlags.Public;
Type type = Type.GetType("GameMainMenu+JetPack");
System.Reflection.FieldInfo key = type.GetField("UIPath", flag);
Debug.Log((key.GetValue(null) as UIPath).ToString());

 

嵌套类的访问

标签:

原文地址:http://www.cnblogs.com/tekkaman/p/4335273.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!