Utils.cs 317 B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. using System.Runtime.InteropServices;
  5. namespace FFTW.NET
  6. {
  7. static class Utils
  8. {
  9. public static int GetTotalSize(params int[] n)
  10. {
  11. int result = 1;
  12. checked
  13. {
  14. foreach (var ni in n)
  15. result *= ni;
  16. }
  17. return result;
  18. }
  19. }
  20. }