/// <summary>
 /// Creates a new <see cref="DataSize"/> from given bytes value.
 /// </summary>
 public static DataSize Bytes(this long value) =>
 DataSize.FromBytes(value);
 /// <summary>
 /// Creates a new <see cref="DataSize"/> from given bytes value.
 /// </summary>
 public static DataSize Bytes(this ushort value) =>
 DataSize.FromBytes(value);