gaazkam
gaazkam
Tbh, I don’t think any pattern-matching would be more helpful than this `tree`-command. What I really needed was a tool that would somehow recreate the directory structure and show it...
As a workaround I do this ```csharp using WooCommerceNET.WooCommerce.v3; using OrderLineItem = WooCommerceNET.WooCommerce.v2.OrderLineItem; ... private void DoStuffWithOrderLineItems(Order order) { foreach(OrderLineItem orderLineItem in order.line_items) { .... } } ```
(Note that I don't know VisualBasic - I'm assuming it works more or less like the similar C# code would work, so I may be wrong) Do you really need...
AFAIK a WPF event handler should be `async void` and then you could `await` within this event handler. (about the only place where you should use `async void` instead of...