Example #1
0
        public static T UnprojectAndInstantiate <T>(this CustomAttributeData cad) where T : Attribute
        {
            CustomAttributeData runtimeCad = cad.ProjectBackToRuntime();

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