| c# Programming Glossary: pickA circular reference was detected while serializing an object of type 'SubSonic.Schema .DatabaseColumn'. http://stackoverflow.com/questions/1153385/a-circular-reference-was-detected-while-serializing-an-object-of-type-subsonic  the JSON serializer. Do you need all the columns You could pick up only the properties you need in the view return Json new.. 
 Reading Excel Files as a Server Process http://stackoverflow.com/questions/1273116/reading-excel-files-as-a-server-process  response to technical question from support. Probably my pick of the bunch. SyncFusion BackOffice Medium cost and had a reasonable.. 
 Bluetooth APIs in Windows/.Net? http://stackoverflow.com/questions/144862/bluetooth-apis-in-windows-net  for nearby devices and inquire their services. If I had to pick one approach today I'd probably do the discovery in C and add.. 
 How do I Convert a string to an enum in C#? http://stackoverflow.com/questions/16100/how-do-i-convert-a-string-to-an-enum-in-c  of an enumeration. When the page is posted I want to pick up the value which will be in the form of a string and convert.. 
 Compiler Ambiguous invocation error - anonymous method and method group with Func<> or Action http://stackoverflow.com/questions/2057146/compiler-ambiguous-invocation-error-anonymous-method-and-method-group-with-fun  resolution does not consider return types or 2 try to pick a conversion we know will work over one we know will not This.. 
 Generics in C#, using type of a variable as parameter http://stackoverflow.com/questions/2107845/generics-in-c-using-type-of-a-variable-as-parameter  you may need to use reflection as above but if you pick the right point to do it you can make sure you only need to.. 
 Conditional operator cannot cast implicitly? http://stackoverflow.com/questions/2215745/conditional-operator-cannot-cast-implicitly  type of the consequence and the alternative expressions pick the more general of the two types and that becomes the type.. 
 Is it worthwhile to initialize the collection size of a List<T> if it's size reasonably known? http://stackoverflow.com/questions/2247773/is-it-worthwhile-to-initialize-the-collection-size-of-a-listt-if-its-size-rea  on the element type and the machine architecture let's pick a List of reference types on a 32 bit machine. Each element.. 
 Reflection to Identify Extension Methods http://stackoverflow.com/questions/299515/reflection-to-identify-extension-methods  class by the developer and if it was the compiler will pick that method up.  c# reflection extension methods   share improve.. 
 Discriminated union in C# http://stackoverflow.com/questions/3151702/discriminated-union-in-c-sharp  is a programming error and I would like the compiler to pick up on this. Also if I could get this correct then hopefully.. 
 how to change originating IP in HttpWebRequest http://stackoverflow.com/questions/3345387/how-to-change-originating-ip-in-httpwebrequest  the delegate has to return an IPEndPoint. You can pick whatever you want but if it can't bind to it it'll call the.. 
 Create an array or List of all dates between two dates http://stackoverflow.com/questions/3738748/create-an-array-or-list-of-all-dates-between-two-dates  could enumerate all the dates in the full date range and pick the value for a date directly from the series if it exists or.. 
 GetMethod for generic method [duplicate] http://stackoverflow.com/questions/4035719/getmethod-for-generic-method  for a method on an interface type. OK maybe that's being picky but it's another major flaw in GetMethods that has been a problem.. name instead of ALL methods in the type. As a final nit pick the name GetGenericMethod could be misleading since you might.. 
 Remove trailing zeros? http://stackoverflow.com/questions/4525854/remove-trailing-zeros  I marked it as answer but sort of confused on which one to pick. Fasih did give a really cool workaround also. If moderators.. 
 Different ways of passing sqlCommand parameters http://stackoverflow.com/questions/4624811/different-ways-of-passing-sqlcommand-parameters  you pass in a DBNull.Value what datatype should ADO.NET pick for that Just be explicit say what type it is you want if you're.. 
 Random row from Linq to Sql http://stackoverflow.com/questions/648196/random-row-from-linq-to-sql  be more efficient to find the number of rows Count then pick one at random Skip First . for count approach var qry from row.. 
 What's the best way to learn C# quickly? [closed] http://stackoverflow.com/questions/72893/whats-the-best-way-to-learn-c-sharp-quickly  Beginner Developer Learning Center Scott Gu's Blog and to pick up this book C# 3.0 Pocket Reference Any other suggestions .. 
 Capturing webpage as image in c#, ensuring javascript rendered elements are visible http://stackoverflow.com/questions/7803201/capturing-webpage-as-image-in-c-ensuring-javascript-rendered-elements-are-visi  and using a draw to bitmap method. However none of these pick up the contents of the chart on this page http www.highcharts.com.. 
 C# : how to - single instance application that accepts new parameters? http://stackoverflow.com/questions/917883/c-sharp-how-to-single-instance-application-that-accepts-new-parameters  a second instance I want the already running instance to pick up the specified file. Making my app single instance can be.. 
 How to change Menu hover color - WINFORMS http://stackoverflow.com/questions/9260303/how-to-change-menu-hover-color-winforms  class. You can override its renderer. Here's an example pick your own colors please. public partial class Form1 Form public.. 
 How is GetHashCode() of C# string implemented? http://stackoverflow.com/questions/15174477/how-is-gethashcode-of-c-sharp-string-implemented  a lot more to it than what you can see from a decompiler. Pick the one that matches your preferred .NET target the method has.. 
 How to determine MAC Address of the actual physical network card — not virtual network interfaces created by VPN's (.NET C#) http://stackoverflow.com/questions/1567377/how-to-determine-mac-address-of-the-actual-physical-network-card-not-virtual  Adapters and my iPHone tethering internet connection. 3 Pick the NIC which has an IP address. Fails for several reasons 1.. on installed software and it'll be difficult to compare. 5 Pick the mac address with the fastest speed. I think this is probably.. 
 Connecting C# to Oracle http://stackoverflow.com/questions/1626636/connecting-c-sharp-to-oracle  light weight. Which instant client packages do you need Pick version 11.1.0.6.0 or newer where ODAC is provided Instant Client.. 
 Business Case for ReSharper http://stackoverflow.com/questions/2298308/business-case-for-resharper  or a pilot with a small number of developers for this. Pick some typical tasks and time them with and without Resharper... 
 smart way to generate unique random number http://stackoverflow.com/questions/3627029/smart-way-to-generate-unique-random-number  'used' field. Select all records that have not been 'used' Pick a random number r between 1 and record count Take record number.. 
 Best way to access a SQL Server database using C# .Net http://stackoverflow.com/questions/3989638/best-way-to-access-a-sql-server-database-using-c-sharp-net  on your project Add New Item ADO.NET Entity Data Model. Pick a name for your entities i.e. MyEntities.edmx click Next Select.. 
 VS 2010 Load Tests Results with custom counters http://stackoverflow.com/questions/8990448/vs-2010-load-tests-results-with-custom-counters  the Agent CounterSet and selected Add Counters... In the Pick Performance Counters window I chose my performance category.. 
 |