Last week I ran into a problem how to access user certificates stored in AD. First of all I’ve checked what X509Store class offers to developers. Unfortunately, it allows access only to current user store and local machine store of the machine where developed application is ran. I’ve searched the Internet and I didn’t found [...]
Today, a colleague of mine Zlatko run into a problem of how to combine several assemblies into one assembly. He started a discussion with me and we decided that I’ll make a research of the problem. After a short research I found several links with applications which allows to merge assemblies. First of all and [...]
Today, I found a nice blog - the blog of Peter Petrov. It contains a lovely set of posts of Useful Methods.
In one of its posts there is a really good implementation of string aggregation. There Peter said
Probably we can speed up my implementation by removing the check and removing the separator from the start but [...]
Last time I wrote that I need a pdf component but it will be nice if I can get it for free. ABCpdf component has an offer for receiving it free but when I read websupergoo’s free license guidlinesI understand that it is not for me because I cannot fulfil their requirements for receiving free [...]
Some time ago, I needed to serialize and deserialize different types of objects to/from XML. Because of that I decided to create a class with template methods to do this. The name of the class is XmlConverter (see below).
1: public static class XmlConverter
2: {
3:
[...]