/// <summary>
 /// Creates a new <see cref="DataSize"/> from given gigabytes value.
 /// </summary>
 public static DataSize Gigabytes(this long value) =>
 DataSize.FromGigabytes(value);
 /// <summary>
 /// Creates a new <see cref="DataSize"/> from given gigabytes value.
 /// </summary>
 public static DataSize Gigabytes(this double value) =>
 DataSize.FromGigabytes(value);
 /// <summary>
 /// Creates a new <see cref="DataSize"/> from given gigabytes value.
 /// </summary>
 public static DataSize Gigabytes(this ushort value) =>
 DataSize.FromGigabytes(value);