12
votes
What are your favorite extension methods for C#/.NET? (codeplex.com/extensionoverflow)
Here is one I use frequently for presentation formatting.
public static string ToTitleCase(this string mText)
{
string rText = "";
try
{
…
3
votes
Anonymous types
a is a string property on your anonymous type
private void button4_Click(object sender, EventArgs e)
{
test((new { a = "asd" }).a);
}
private void test(string a)
{
}
…
0
votes
Are public fields ever OK?
If you modify your test to use the temp variables you assign rather than directly access the properties in your calculation you will see a large performance improvement:
sw. …
4
votes
What is the best documented IOC framework for .net?
Microsoft's Unity Application Block is pretty well documented.
…
0
votes
Best way/technology to implement a generic archive process
Maybe I'm not reading the requirements correctly but wouldn't a simple
create <dest_table> as select * from <source_table>;
suffice? with a drop first …
