Unit multiplication #241
Marcus-Sie
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I would request to add Unit * Unit multiplication and devison.
At the Moment only Unit * double is implementet
// Summary: // Multiplies a Unit with a double. public static Unit operator *(Unit l, double r); // // Summary: // Multiplies a Unit? with a double. public static Unit? operator *(Unit? l, double r); // // Summary: // Divides a Unit by a double. public static Unit operator /(Unit l, double r); // // Summary: // Divides a Unit? by a double. public static Unit? operator /(Unit? l, double r);
Beta Was this translation helpful? Give feedback.
All reactions