We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5e8192b commit df70579Copy full SHA for df70579
UnitsNet/CustomCode/UnitClasses/Force.extra.cs
@@ -53,6 +53,11 @@ public partial struct Force
53
{
54
return Pressure.FromPascals(force.Newtons/area.SquareMeters);
55
}
56
+
57
+ public static ForcePerLength operator /(Force force, Length length)
58
+ {
59
+ return ForcePerLength.FromNewtonsPerMeter(force.Newtons/length.Meters);
60
+ }
61
#endif
62
63
// Method overloads with same number of argumnets not supported in Universal Windows Platform (WinRT Components)
0 commit comments