Tagged Questions

10
votes
10answers
7k views

Quickest Method to Reverse in String in C#.net

Thank you for your entries. Here is my response. I'm currently writing a quick solution for Euler Problem #4 where one must find the largest palindromic number from the product of two 3-digit ...
9
votes
14answers
824 views

Code that return True if only one or two of three params are true

I need a code that return True if only one or two of three params are true what is the shortest/best way?
2
votes
6answers
452 views

Most Concise way to Invoke a void Method Asynchronously

I have a method which I would like to invoke asynchronously: void Foo() { } I can indeed invoke this asynchronously by the following: delegate void DVoidMethod(); DVoidMethod FooDelegate = new ...
1
vote
2answers
133 views

Convert DateTime to shortest possible version number (for url)

Challenge: convert a 'modified date' DateTime of an image file to a version number / string suitable for maintaining uniqueness in a url, so each modification of the image generates a unique url, the ...
0
votes
3answers
2k views

Codegolf: Convert csv to HTML table with smallest amount of code in C#

I'm adding a function to my own personal toolkit lib to do simple CSV to HTML table conversion. I would like the smallest possible piece of code to do this in C#, and it needs to be able to handle ...