Enable Debugging in Silverlight Applications

If you ever wonder why the breakpoints in your Silverlight application are never hit, it is simply because you have not enabled debugging for it. The following steps describe how you can enable debugging for your Silverlight apps. From the Solution Explorer, select the web project that hosts your Silverlight XAP files, and then Double-click [...]

Create CSV From a Simple Collection.

Here is a handy snippet I normally use to create a CSV string from a simple collection of strings: 1: public string ToCsv(IEnumerable<string> collection){ 2: return string.Join(“,”, collection.ToArray()); 3: }

Follow

Get every new post delivered to your Inbox.