Thursday 31 March 2011

Blogging: How to ping new blog posts

Question:
How do I ping my Blogger posts?
To which server and how do I ping my blog posts on Blogger?

Dot.Net: CurrentCulture vs CurrentUICulture

Question:
What is the difference between CurrentCulture and CurrentUICulture and when do I use which one in dot.net?
Should I use CurrentCulture or CurrentUICulture for localization (translation)?
Which culture should I use to parse dates or numbers in c#?

Monday 28 March 2011

Dot.net: AOP with PostSharp - Property accessor modified

Question:
How can I change a property getter for all my properties by using AOP?
How to use PostSharp, an Aspect Oriented Programming framework, to intercept property getter calls.

Dot.Net: Using Thread Local Storage

Question:
How to store and access thread specific static data in dot.net.
I want my static data not shared between different threads. How do I do this?

Tuesday 22 March 2011

Asp.Net: Order of HttpApplication events

 Question:
What is the order of the application events in a asp.net 4.0 application.
I have a HttpModule that subscribes to appliation events, in what order ?

Dot.Net: XML Serialization Sample

Question:
Do you have a standard XML serialization sample for dot.net?
How to serialize object to XML in dot.net?
What is the easiest way to transform objects to XML in dot.net?

Monday 21 March 2011

Dot.Net: XML Deserialize XElement

Question:
How do I deserialize a given string using XElement in dot.net??

Friday 18 March 2011

Asp.Net: Good Open Source Projects

Question:
What are the best open source projects for asp.net

Answer:
Don't know what are the best but here are some listed by crosoft:
Links to ASP.NET Open Source Projects

Saturday 5 March 2011

VisualStudio: Show Call Graph for method

Question:
How do I know the caller of my function?
Can I see the whole call graph in Visual Studio?