示例#1
0
文件: typeinfo.cs 项目: roytam1/fx3
            public Type GetCLRType()
            {
                Type t = type.AsCLRType();

                if (IsOut() && !IsRetVal())
                {
                    Type reft = System.Type.GetType(t.FullName + "&");
                    Console.WriteLine("{0} -> {1}", t.FullName, reft.FullName);
                    t = reft;
                }
                return(t);
            }