TestClassWithArrays.cs 843 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace S7.UnitTest.Helpers
  6. {
  7. public class TestClassWithArrays
  8. {
  9. public bool Bool { get; set; }
  10. public bool[] BoolValues { get; set; } = new bool[2];
  11. public bool[] Fillers { get; set; } = new bool[13];
  12. public short[] Shorts { get; set; } = new short[2];
  13. public ushort[] UShorts { get; set; } = new ushort[2];
  14. public int[] Ints { get; set; } = new int[2];
  15. public double[] Doubles { get; set; } = new double[2];
  16. public float[] Singles { get; set; } = new float[2];
  17. public short Short { get; set; }
  18. public ushort UShort { get; set; }
  19. public int Int { get; set; }
  20. public double Double { get; set; }
  21. public float Single { get; set; }
  22. }
  23. }