Good day! Faced such a problem:
There is a code that receives data from a WCF service:
BasicHttpBinding bd = new BasicHttpBinding(); CashService.RemoteCashContractClient client = new CashService.RemoteCashContractClient(bd, new EndpointAddress("http://.......")); CashService.CatalogRecord[] myStocks = client.GetStockList(); But I can not understand how to display this data in the TreeView .
Please tell me how to do it correctly? Thank you in advance.