Basically, window app UI, either WPF or traditional WinForm, is single threaded, which means only one thing can happen in the UI at any given time. To be specific, it is not generally possible to create an object on one thread, and access it from another.
Read More...
In this post, I’d like to illustrate the power of LINQ with code sample. I query the web service published by eBay. Refer to this article about eBay API concepts. EbayItem.cs namespace LINQ2EbayResponse { class EbayItem { public string ItemID { get ;
Read More...