Example #1
0
        public static unsafe Pointer <T> AllocateFile <T>(string fileName)
        {
            var file = YRMemory.Create <CCFileClass>(fileName);

            return(file.Ref.ReadWholeFile());
        }
Example #2
0
 public YRClassHandle(params object[] list)
 {
     _pointer = YRMemory.Create <T>(list);
 }