¡@

Home 

c# Programming Glossary: overhead

Is it bad to not unregister event handlers?

http://stackoverflow.com/questions/1061727/is-it-bad-to-not-unregister-event-handlers

reason I could see is that there might be a little extra overhead if events are being fired that you dont necessarly care about..

.Net Data structures: ArrayList, List, HashTable, Dictionary, SortedList, SortedDictionary — Speed, memory, and when to use each?

http://stackoverflow.com/questions/128636/net-data-structures-arraylist-list-hashtable-dictionary-sortedlist-sorted

speed. ArrayList automatically growing array. Adds more overhead. Can enum. probably slower than a normal array but still pretty..

Is a program F# any more efficient (execution-wise) than C#? [closed]

http://stackoverflow.com/questions/142985/is-a-program-f-any-more-efficient-execution-wise-than-c

of bubble sort in F# that uses inline to remove the overhead of the function and generic array type let inline bubblesort..

Getting the size of a field in bytes with C#

http://stackoverflow.com/questions/207592/getting-the-size-of-a-field-in-bytes-with-c-sharp

x86 box an instance of FourBytes takes 12 bytes including overhead . An instance of FiveBytes takes 16 bytes. The only difference..

Windows shell extension with C#

http://stackoverflow.com/questions/2194572/windows-shell-extension-with-c-sharp

the interfaces easy to get to with it Is there additional overhead that causes the menu to be slower to pop up Any one have good..

Transactions in .net

http://stackoverflow.com/questions/224689/transactions-in-net

in SQL Server 2005 and above it can use the LTM much less overhead until you talk to 2 sources etc when it is elevated to DTC...

How do I split a string by strings and include the delimiters using .NET?

http://stackoverflow.com/questions/2484919/how-do-i-split-a-string-by-strings-and-include-the-delimiters-using-net

bit slow on small datasets probably due to initialization overhead . Regex does well on large data and hits a similar speed as..

Units of measure in C# - almost

http://stackoverflow.com/questions/348853/units-of-measure-in-c-sharp-almost

possible to do dimensional analysis at runtime but it adds overhead and doesn't give you the benefit of compile time checking. As..

Garbage collection when using anonymous delegates for event handling

http://stackoverflow.com/questions/371109/garbage-collection-when-using-anonymous-delegates-for-event-handling

WPF Weak Event pattern is rumored to come with a lot of overhead so in this particular situation I wouldn't use it. Furthermore..

Compare using Thread.Sleep and Timer for delayed execution

http://stackoverflow.com/questions/391621/compare-using-thread-sleep-and-timer-for-delayed-execution

during the life of your application this will save the overhead of creating and destroying a bunch of threads a process which..

Best .NET memory and performance profiler? [closed]

http://stackoverflow.com/questions/49912/best-net-memory-and-performance-profiler

I have used the other being YourKit that has low enough overhead to handle a highly CPU intensive application. If and only if..

What is the real overhead of try/catch in C#?

http://stackoverflow.com/questions/52312/what-is-the-real-overhead-of-try-catch-in-c

is the real overhead of try catch in C# So I know that try catch does add some overhead.. of try catch in C# So I know that try catch does add some overhead and therefore isn't a good way of controlling process flow but.. a good way of controlling process flow but where does this overhead come from and what is it's actual impact c# .net performance..

Fast and compact object serialization in .NET

http://stackoverflow.com/questions/549128/fast-and-compact-object-serialization-in-net

technique should I use The BinaryFormatter adds a lot of overhead to serialized classes Version culture class name property names..

Creating a Math library using Generics in C#

http://stackoverflow.com/questions/63694/creating-a-math-library-using-generics-in-c-sharp

type is declared for use. Having _math static reduces overhead. static Fraction This part of the code might be cleaner by..

Are floating-point numbers consistent in C#? Can they be?

http://stackoverflow.com/questions/6683059/are-floating-point-numbers-consistent-in-c-can-they-be

path. Use native code for the math operations. Incurs the overhead of a delegate call on every math operation. I've just started..

Large Object Heap Fragmentation

http://stackoverflow.com/questions/686950/large-object-heap-fragmentation

long 128 elements 128 8 for the references and 32 bytes of overhead. The idea is that perhaps some unsafe code in a library or in..

Are there any Fuzzy Search or String Similarity Functions libraries written for C#? [closed]

http://stackoverflow.com/questions/83777/are-there-any-fuzzy-search-or-string-similarity-functions-libraries-written-for

more easy to search for similar strings and without the overhead of the indexing part. The answer I marked has got two very easy..

What is quicker, switch on string or elseif on type?

http://stackoverflow.com/questions/94305/what-is-quicker-switch-on-string-or-elseif-on-type

type handles instead of full type objects avoids the overhead of loading the type object through reflection. Here are some..