fork download
  1. using System;
  2.  
  3. struct Voxel {
  4. byte weight;
  5. byte type;
  6. }
  7. public class Test
  8. {
  9. public static void Main()
  10. {
  11. // your code goes here
  12. Console.WriteLine(System.Runtime.InteropServices.Marshal.SizeOf(typeof(Voxel)));
  13. }
  14. }
Success #stdin #stdout 0.03s 24160KB
stdin
Standard input is empty
stdout
2