Search Results

1
vote
1answer
243 views

CastException attempting to call Action<KeyValuePair<>> delegate asynchronously

I can't seem to figure out why I am getting an InvalidCastException running the following code: var item = new KeyValuePair<string, string>("key", "value"); Action<KeyValu …
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) { } …
1
vote

C# MVC: Trailing equal sign in URL doesn’t hit route

IF you're passing data in the URL you should probably URL Encode it which would take care of the trailing =. http:/ …
0
votes

Obtaining Background-image from stylesheet using C#

The problem is that CSS rules are not applied or enforced on the server, they are applied by the client browser. You could perhaps create a parser that goes through the referenced CSS files and fig …
1
vote

create a webpage popup using c#

The short answer is, you can't. C# runs on the server and opening a popup window is a client side action. You will need to have JavaScript in your rendered markup to open the popup window when appr …
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. …
0
votes

How do I match this pattern, what is the correct algorithm?

Update: I realize now that my answer really didn't address the intent of the question. I am removing the posted code since it was trivial and just serves to clutter up the thread. …