Search Results

6
votes

Do C# Generics Have a Perfomance Benefit?

Not only yes, but HECK YES. I didn't believe how big of a difference they could make. We did testing in VistaDB after a rewrite of a small percentage of core code that used ArrayLists and HashTab …
2
votes

What’s the best way for a .NET winforms application to update itself without using ClickOnce?

Indigo Rose has a product called TrueUpdate that also does this for you. I have used them in the past from both managed and unman …
3
votes

Is there anything like C# (.NET) Library that works as API for Google?

Yes, Google limits the number of queries per hour... All search engines do unless you have a partnership agreement with them, or pay them for the lookups. It costs to do your que …
1
vote

Why so many sp_resetconnections for C# connection pooling?

Basically the calls are the clear out state information. If you have ANY open DataReaders it will take a LOT longer to occur. This is because your DataReaders are only holding a single row, but c …
1
vote

Do ADO.Net DataTables have indexes?

John above is correct. DataTables are disconnected in memory structures. They do not map to the physical implementation of the database. The indexes on disk are used to speed up lookups …
0
votes

Sending email through GMAIL SMTP server with C#

The problem is not one of technical ability to send through gmail. That works for most situations. If you can't get a machine to send, it is usually due to the machine not having been authenticat …