예제 #1
0
파일: TestUtils.cs 프로젝트: zouql/runtime
        public static T UnprojectAndInstantiate <T>(this CustomAttributeData cad) where T : Attribute
        {
            CustomAttributeData runtimeCad = cad.ProjectBackToRuntime();

            return(runtimeCad.Instantiate <T>());
        }