You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Represents the largest possible value of {_quantity.Name}
230
237
/// </summary>
238
+
[Obsolete(""MaxValue and MinValue will be removed. Choose your own value or use nullability for unbounded lower/upper range checks. See discussion in https://github.com/angularsen/UnitsNet/issues/848."")]
231
239
public static {_quantity.Name} MaxValue {{ get; }} = new {_quantity.Name}({_valueType}.MaxValue, BaseUnit);
232
240
233
241
/// <summary>
234
242
/// Represents the smallest possible value of {_quantity.Name}
235
243
/// </summary>
244
+
[Obsolete(""MaxValue and MinValue will be removed. Choose your own value or use nullability for unbounded lower/upper range checks. See discussion in https://github.com/angularsen/UnitsNet/issues/848."")]
236
245
public static {_quantity.Name} MinValue {{ get; }} = new {_quantity.Name}({_valueType}.MinValue, BaseUnit);
237
246
238
247
/// <summary>
239
248
/// The <see cref=""QuantityType"" /> of this quantity.
240
249
/// </summary>
250
+
[Obsolete(""QuantityType will be removed in the future. Use Info property instead."")]
241
251
public static QuantityType QuantityType {{ get; }} = QuantityType.{_quantity.Name};
0 commit comments