2
votes
Is there a sorted collection type in .NET?
I would extend your own list class that, as you mentioned, simply sorts after every insert. Since your inserts are infrequent the performance hit would be minimal, and sorting a nearly sorted list …
1
vote
Int128 in .Net?
Here's an implementation of big integer from .net matters.
http://msdn.microsoft.com/en-us/magazine/cc163696. …
0
votes
CNG, CryptoServiceProvider and Managed implementations of HashAlgorithm
The Cng versions are supposed to be a little faster, but I just wrote up a little program that compares the speeds of each. (I had a client that was asking about the performance characteristics of …
1
vote
How can I add mouse click event to Web TextBox in c#
If you're talking about a client side onclick event you can use the OnClick property in the designer, or you can manually add the "onclick" event in code.
For the onclick method try the fol …
