This is an example from .NET Documentation Binding Path Syntax: "Indexers and sub properties can be mixed in a Path clause; for example, Path=ShoppingCart.ShippingInfo[MailingAddress,Street]". Can someone explain to me where the properties MailingAddress and Street are defined.
You are interested in the example at this link: https://learn.microsoft.com/en-us/dotnet/api/system.windows.data.binding.path?view=windowsdesktop-9.0#remarks
This example assumes that:
var result = source.ShoppingCart.ShippingInfo["MailingAddress", "Street"];
in C#.