| c# Programming Glossary: performantHow do I bind a Combo so the displaymember is concat of 2 fields of source datatable? http://stackoverflow.com/questions/1006521/how-do-i-bind-a-combo-so-the-displaymember-is-concat-of-2-fields-of-source-datat  Key cbo.DataBind Obviously this isn't as performant as binding directly to the DataTable but I wouldn't worry about.. 
 How performant is StackFrame? http://stackoverflow.com/questions/1348643/how-performant-is-stackframe  performant is StackFrame  I am considering using something like StackFrame.. 
 Best practice to call ConfigureAwait for all server-side code http://stackoverflow.com/questions/13489065/best-practice-to-call-configureawait-for-all-server-side-code  you call ConfigureAwait false I had read that it is more performant since it doesn't have to switch thread contexts back to the.. on using async on ASP.NET. I had read that it is more performant since it doesn't have to switch thread contexts back to the.. 
 Monitor vs WaitHandle based thread sync http://stackoverflow.com/questions/1355398/monitor-vs-waithandle-based-thread-sync  Monitor.Pulse signal This works and is probably even more performant and lightweight but is less readable. And it's where the headache.. 
 Recommended ServiceStack API Structure http://stackoverflow.com/questions/15231537/recommended-servicestack-api-structure  subjective term. I'll generally aim for DRY re usable performant solutions that promotes the least effort friction and chattiness.. 
 What ORM for .net should I use? http://stackoverflow.com/questions/1691575/what-orm-for-net-should-i-use  this combination with LINQ is both very powerful and very performant. NH LINQ is now part of the standard distribution. Disclaimer.. 
 Should IEquatable<T>, IComparable<T> be implemented on non-sealed classes? http://stackoverflow.com/questions/1868316/should-iequatablet-icomparablet-be-implemented-on-non-sealed-classes  comparison functions in a manner that's reasonably performant One thing that has cropped up though is what functions to use.. 
 How do you remove invalid hexadecimal characters from an XML-based data source prior to constructing an XmlReader or XPathDocument that uses the data? http://stackoverflow.com/questions/20762/how-do-you-remove-invalid-hexadecimal-characters-from-an-xml-based-data-source-p  invalid hexadecimal characters but I am looking for a more performant solution.  c# xml validation encoding   share improve this question.. 
 Request[“key”] vs Request.Params[“key”] vs Request.QueryString[“key”] C# asp.net http://stackoverflow.com/questions/2312855/requestkey-vs-request-paramskey-vs-request-querystringkey-c-sharp-as  to this collection. For the second request on it is more performant than Request Key . Having said that the performance difference.. 
 What guarantees are there on the run-time complexity (Big-O) of LINQ methods? http://stackoverflow.com/questions/2799427/what-guarantees-are-there-on-the-run-time-complexity-big-o-of-linq-methods  far I've been taking it on faith that the operations are performant. However can I bank on that STL containers for example clearly.. 
 dynamic vs object type http://stackoverflow.com/questions/3442821/dynamic-vs-object-type  compile time checking for the most part. And yes it's less performant than using static typing where you can use static typing. However.. 
 Casting List<T> - covariance/contravariance problem http://stackoverflow.com/questions/4931789/casting-listt-covariance-contravariance-problem  return result .... How can you solve it in a more elegant performant way Please mind that I need .NET 2.0 solution but for completeness.. 
 ReSharper for C++ http://stackoverflow.com/questions/4954129/resharper-for-c  Assist X which handles C and does it in a reasonably performant manner. Developer Express also makes CodeRush which provides.. 
 Interprocess communication for Windows in C# (.NET 2.0) http://stackoverflow.com/questions/50153/interprocess-communication-for-windows-in-c-sharp-net-2-0  defined as more robust and less error prone not the most performant nor the easiest to code. Code examples will be very welcome.. 
 Turning async socket Parallel and not only Concurrent in very intensive application using TPL http://stackoverflow.com/questions/5834755/turning-async-socket-parallel-and-not-only-concurrent-in-very-intensive-applicat  tasks . How can I keep socket operations parallel and performant and if deal whith socket problems like disconnections half connected.. 
 Reading large XML documents in .net http://stackoverflow.com/questions/7671958/reading-large-xml-documents-in-net  when I try to load the document. What is the most performant way to read XML files of large size  c# .net xml parsing   share.. 
 Eric Lippert's challenge “comma-quibbling”, best answer? http://stackoverflow.com/questions/788535/eric-lipperts-challenge-comma-quibbling-best-answer  you learn a lot. I twisted it a bit so it is a bit more performant and clear by using Count and avoiding Reverse public static.. 
 Creating a comma separated list from IList<string> or IEnumerable<string> http://stackoverflow.com/questions/799446/creating-a-comma-separated-list-from-iliststring-or-ienumerablestring  This is likely to be the simplest way to do it and quite performant as well there are other questions about exactly what the performance.. 
 |