コード例 #1
0
 private static Profiler Convert(Profiler_FFI data_FFI)
 {
     return(new Profiler
     {
         name = Convert(data_FFI.name),
         description = Convert(data_FFI.description),
         id = data_FFI.id,
     });
 }
コード例 #2
0
 private static unsafe void Free(Profiler_FFI input)
 {
     Free(input.name);
     Free(input.description);
 }