c# Programming Glossary: large
XDocument or XMLDocument http://stackoverflow.com/questions/1542073/xdocument-or-xmldocument all the APIs to some extent. For example you can stream a large document but use LINQ to XML by positioning an XmlReader at..
Big integers in C# http://stackoverflow.com/questions/176775/big-integers-in-c-sharp here . Having never used a library for working with large integers before this seems slow on the order of 10 times slower.. or is this level of performance normal c# biginteger largenumber j# share improve this question MS is going to introduce..
What NoSQL solutions are out there for .NET? [closed] http://stackoverflow.com/questions/1777103/what-nosql-solutions-are-out-there-for-net of its simplicity stability and speed it's used by many large companies including StackOverflow GitHub Twitter Blizzard Flickr..
Whats the main difference between int.Parse() and Convert.ToInt32 http://stackoverflow.com/questions/199470/whats-the-main-difference-between-int-parse-and-convert-toint32 Int32.Parse though in practice unless you're doing a very large numbers of iterations in a loop you'll never notice it. share..
Best Practice for Forcing Garbage Collection in C# http://stackoverflow.com/questions/233596/best-practice-for-forcing-garbage-collection-in-c-sharp collection but in some cases where you are working with large objects that don't always get collected in the 0 generation..
When to Use Static Classes in C# http://stackoverflow.com/questions/241339/when-to-use-static-classes-in-c-sharp Again we can wrap them up but it'll require us to change large parts of our code just to be able to accept wrappers instead.. will have different purposes we'll quickly end up with a large class filled up with non coherent functionality ideally each..
Find unused code http://stackoverflow.com/questions/245963/find-unused-code unused code I have to refactor a large C# application and I found a lot of functions that are never..
How to fix the flickering in User controls http://stackoverflow.com/questions/2612487/how-to-fix-the-flickering-in-user-controls They can be really expensive when the source image is large and needs to be shrunk to fit the control. Change the BackgroundImageLayout..
Code Coverage for C#/.NET [closed] http://stackoverflow.com/questions/276829/code-coverage-for-c-net 32 and 64 bits full C# 4.0 Handles both small and very large code bases 250 for single user license JetBrains dotCover 100..
What is the best way to build XML in C# code? [closed] http://stackoverflow.com/questions/284324/what-is-the-best-way-to-build-xml-in-c-sharp-code XDocument etc are also very friendly. If the size is very large then XmlWriter is your friend. For an XDocument example Console.WriteLine.. data Console.WriteLine doc.OuterXml If you are writing a large stream of data then any of the DOM approaches such as XmlDocument..
Is there a better alternative than this to 'switch on type'? http://stackoverflow.com/questions/298976/is-there-a-better-alternative-than-this-to-switch-on-type is definitely lacking in C#. In order to do this without a large if else if else statement you'll need to work with a different..
Is there any significant difference between using if/else and switch-case in C#? http://stackoverflow.com/questions/395618/is-there-any-significant-difference-between-using-if-else-and-switch-case-in-c noticeable constant costs but if number of case labels is large it will be significantly faster than comparing to each string..
How to read a text file reversely with iterator in C# http://stackoverflow.com/questions/452902/how-to-read-a-text-file-reversely-with-iterator-in-c-sharp file reversely with iterator in C# I need to process a large file around 400K lines and 200 M. But sometimes I have to process..
How do I suspend painting for a control and its children? http://stackoverflow.com/questions/487661/how-do-i-suspend-painting-for-a-control-and-its-children and its children I have a control which I have to make large modifications to. I'd like to completely prevent it from redrawing..
Use of Application.DoEvents() http://stackoverflow.com/questions/5181777/use-of-application-doevents part by the trouble caused by DoEvents and threads but in large part by WinRT's api design that requires you to keep your UI..
String vs. StringBuilder http://stackoverflow.com/questions/73883/string-vs-stringbuilder StringBuilder StringBuilder being mutable but is there a large performance difference between the two The program I ™m working..
Quickest way to convert a base 10 number to any base in .NET? http://stackoverflow.com/questions/923771/quickest-way-to-convert-a-base-10-number-to-any-base-in-net string gives a performance improvement especially on large number see method IntToStringFast . In the best case i.e. the..
byte + byte = int… why? http://stackoverflow.com/questions/941584/byte-byte-int-why numbers i.e. 8 and storing the intermediate results in a large array. Using a byte array instead of an int array is faster..
Moving existing code to Test Driven Development http://stackoverflow.com/questions/167079/moving-existing-code-to-test-driven-development tests look to detect and avoid changes in behaviour. Large untested systems often have internal behaviours that may seem..
What is a message pump? http://stackoverflow.com/questions/2222365/what-is-a-message-pump threads is set by the Thread.SetApartmentState method. Large parts of Windows plumbing won't work correctly if the UI thread..
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 longer made on the generation 0 heap it is taken from the Large Object Heap. Objects on the LOH are treated specially. They.. You won't get all those awkward released blocks in the Large Object Heap and avoid fragmentation. In effect you'll be able..
In C# What is the best way to parse Large XML (Size of 1GB)…? http://stackoverflow.com/questions/468948/in-c-sharp-what-is-the-best-way-to-parse-large-xml-size-of-1gb C# What is the best way to parse Large XML Size of 1GB &hellip I am having a 1GB XML File and want..
OutOfMemoryException on declaration of Large Array http://stackoverflow.com/questions/4815461/outofmemoryexception-on-declaration-of-large-array on declaration of Large Array I have to create a fairly large double array 12000ish..
Large Switch statements: Bad OOP? http://stackoverflow.com/questions/505454/large-switch-statements-bad-oop Switch statements Bad OOP I've always been of the opinion that..
Localizing enum descriptions attributes http://stackoverflow.com/questions/569298/localizing-enum-descriptions-attributes System.Reflection public class MyClass enum SomeEnum Small Large private ResourceManager _resources new ResourceManager MyClass.myResources.. file for a string matching the key MyClass SomeEnum.Large string s1 EnumDescription SomeEnum.Large share improve this..
What JSON library works well for you in .NET? http://stackoverflow.com/questions/571168/what-json-library-works-well-for-you-in-net product.Price 3.99M product.Sizes new string Small Medium Large string json JsonConvert.SerializeObject product Name Apple Expiry.. new Date 1230422400000 Price 3.99 Sizes Small Medium Large Product deserializedProduct JsonConvert.DeserializeObject Product..
Count total rows of gridview with pagination http://stackoverflow.com/questions/5788329/count-total-rows-of-gridview-with-pagination nbsp asp Label ID notifyLbl runat server Font Size Large ForeColor Red Text Label asp Label td tr tr td colspan.. colspan 4 asp Label ID titleLbl runat server Font Size Large ForeColor Red Text Label asp Label td tr tr td colspan..
How to parse json in C#? http://stackoverflow.com/questions/6620165/how-to-parse-json-in-c product.Price 3.99M product.Sizes new string Small Medium Large string json JsonConvert.SerializeObject product Name Apple Expiry.. Expiry 2008 12 28T00 00 00 Price 3.99 Sizes Small Medium Large Product deserializedProduct JsonConvert.DeserializeObject Product..
Large Object Heap Fragmentation http://stackoverflow.com/questions/686950/large-object-heap-fragmentation Object Heap Fragmentation The C# .NET application I am working.. and serialising data to a remote host and is hitting the Large Object Heap LOH a fair bit. However most of the LOH objects.. size 00b20000 00b21000 010029bc 0x004e19bc 5118396 Large object heap starts at 0x01b21000 segment begin allocated size..
Kinect crop image http://stackoverflow.com/questions/7682447/kinect-crop-image e PlanarImage image e.ImageFrame.Image Large video feed video.Source BitmapSource.Create image.Width image.Height..
Large WCF web service request failing with (400) HTTP Bad Request http://stackoverflow.com/questions/784606/large-wcf-web-service-request-failing-with-400-http-bad-request WCF web service request failing with 400 HTTP Bad Request I've..
Web Forms Tabular Control for this Scenario http://stackoverflow.com/questions/9771381/web-forms-tabular-control-for-this-scenario en us library ms998596.aspx Efficiently Paging Through Large Amounts of Data C# http www.asp.net web forms tutorials data..
|