WCF Web Services vs. Standard Web Services
If you have experience with the standard .net web services you may find useful the following table of comparison between WCF Web Services and Standard Web Services. Standard Web Services WCF Web...
View ArticleIntroduction to Open XML SDK 2.0
Currently, I work with Open XML SDK 2.0 and in this post, I’ll try to explain simple introduction to it: What is Open XML and Open XML SDK? Open XML is an open standard that defines a set of XML...
View ArticleExport data to docx file using Open XML SDK
Here’s simple example how can we export some table data to docx file using Open XML SDK. If you are not familiar with Open XML SDK, you can check out first Introduction to Open XML SDK. In this...
View ArticleMy URL Pattern
I needed a url pattern that recognizes the following urls: http://site.com www.site.com https://site.com https://www.site.com Even more, I wanted after url detection, it to be replaced with:...
View ArticleHow to declare and init a static Dictionary
You may want to declare a static Dictionary variable in you code, here’s a simple example how it can be done in C#: using System.Collections.Generic; … public static Dictionary<string, string>...
View ArticleShould you create separate file for new enum in .NET?
You may become in the following situation: You have some class and you want to add some enum for it, then you begin wandering should you add a new file for the enum. I think if the enum will be used by...
View Article