-1
votes
Getting all types that implement an interface with C# 3.5
You could use some LINQ to get the list:
var types = from type in this.GetType().Assembly.GetTypes()
where type is ISomeInterface
select type;
…
1
vote
How do you programmatically fill in a form and ‘POST’ a web page?
View the source of the page and use the WebRequest class to do the posting. No need to drive IE. Just figure out what IE is sending to the server and replicate that. Using a tool like Fiddler wi …
6
votes
How to check if one DateTime is later than another in C#
if(StartDate < EndDate)
{}
DateTime supports normal comparision operators.
…
10
votes
Is it possible to pass a App setting in the web.config to a Common C# class
In any class you can use ConfigurationManager.AppSettings["KeyToSetting"] to access any value in the element of web.config (or app.config)
…
6
votes
Is it possible to exclude some members of a type from XmlSerializer serialization?
You are looking for XmlIgnore
…
