We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
E.g.
public static class LChuvColorExtensions { public static void Deconstruct(this LChuvColor lChuv, out double l, out double c, out double h) { l = lChuv.L; c = lChuv.C; h = lChuv.h; } }
Usage:
LChuvColor lChuv = GetColor(); var (l, c, h) = lChuv;
The text was updated successfully, but these errors were encountered:
Good idea. I think I already noted this some time ago (#41), it's not too difficult to add, and a nice feature.
I hope to get around to this soon. I'd like to release v3 first with the new extensible conversion engine.
Sorry, something went wrong.
Added decontructors for colors (#81).
9c90168
No branches or pull requests
E.g.
Usage:
The text was updated successfully, but these errors were encountered: