Desconstruction in C# 7
public void Deconstruct(out Type1 first, out Type2 second, ... , out Type99 last) { ... } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
public void Deconstruct(out Type1 first, out Type2 second, ... , out Type99 last) { ... } |