¡@

Home 

c# Programming Glossary: worst

c# and excel automation - ending the running instance

http://stackoverflow.com/questions/1041266/c-sharp-and-excel-automation-ending-the-running-instance

stuff into smaller methods. This example is something of a worst case since all we're doing is creating objects. Normally there's..

.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

like ArrayList . Hashtable plain old hashtable. O 1 to O n worst case. Can enumerate the value and keys properties and do key..

How much faster is C++ than C#?

http://stackoverflow.com/questions/138361/how-much-faster-is-c-than-c

slow and then think about how to optimize the code. In the worst case you might need to call out to C code through a foreign..

What are the pros and cons to keeping SQL in Stored Procs versus Code

http://stackoverflow.com/questions/15142/what-are-the-pros-and-cons-to-keeping-sql-in-stored-procs-versus-code

and are pretty common these days. Code repetition is the worst thing you can do when you're trying to build a maintainable..

What is the fastest way I can compare two equal-size bitmaps to determine whether they are identical?

http://stackoverflow.com/questions/2031217/what-is-the-fastest-way-i-can-compare-two-equal-size-bitmaps-to-determine-whethe

given and here are the benchmarks. The setup two identical worst case bitmaps 100x100 in size with 10 000 iterations each. Here..

reference assignment is atomic so why is Interlocked.Exchange(ref Object, Object) needed?

http://stackoverflow.com/questions/2192124/reference-assignment-is-atomic-so-why-is-interlocked-exchangeref-object-object

in the field you are off in the weeds and risking the worst kind of race conditions. I am neither an expert in this field..

What is the worst gotcha in C# or .NET?

http://stackoverflow.com/questions/241134/what-is-the-worst-gotcha-in-c-sharp-or-net

is the worst gotcha in C# or .NET I was recently working with a DateTime.. before so I thought it would be useful to catalog the worst C# gotchas. c# .net share improve this question private..

Tips for optimizing C#/.NET programs [closed]

http://stackoverflow.com/questions/2473666/tips-for-optimizing-c-net-programs

the heck out of what the profiler identifies as the worst performing subsystem. Keep profiling on every change so that..

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

usage. The naive version aka what I wrote initially is the worst in terms of computation time. Regex is a bit slow on small datasets..

C# Object Pooling Pattern implementation

http://stackoverflow.com/questions/2510975/c-sharp-object-pooling-pattern-implementation

references to them but mark them as in use or not . In the worst case scenario only one slot is ever available and it takes a..

How do I create a custom membership provider for ASP.NET MVC 2?

http://stackoverflow.com/questions/2771094/how-do-i-create-a-custom-membership-provider-for-asp-net-mvc-2

code runs after the output caching module. In the worst case this could allow an authorized user to cause the page to..

WCF HttpTransport: streamed vs buffered TransferMode

http://stackoverflow.com/questions/4043683/wcf-httptransport-streamed-vs-buffered-transfermode

GC some of it managed by the BufferManager which worst case means it keeps lots of unused arrays in memory that are..

Is C# really slower than say C++?

http://stackoverflow.com/questions/5326269/is-c-sharp-really-slower-than-say-c

that are meaningless at best and outright misleading at worst. Bonus Topic Benchmarks Since quite a few blogs web sites magazine..

Fastest Way of Inserting in Entity Framework

http://stackoverflow.com/questions/5940225/fastest-way-of-inserting-in-entity-framework

question ...SavingChanges for each record ... That's the worst thing you can do Calling SaveChanges for each record slows bulk..

Globally catch exceptions in a WPF application?

http://stackoverflow.com/questions/793100/globally-catch-exceptions-in-a-wpf-application

data generated by the program A serious error would at worst just cause no data to be recorded. Subtle changes that change..

MVC Razor view nested foreach's model

http://stackoverflow.com/questions/8894442/mvc-razor-view-nested-foreachs-model

FooBar off of TModel . Which at best isn't there and at worst is something else entirely. If you were posting to a specific..

Is there a reason for C#'s reuse of the variable in a foreach?

http://stackoverflow.com/questions/8898925/is-there-a-reason-for-cs-reuse-of-the-variable-in-a-foreach

to say that all regret that decision. This is one of the worst gotchas in C# and we are going to take the breaking change to..

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 IntToStringFast int value char baseChars 32 is the worst cast buffer size for base 2 and int.MaxValue int i 32 char buffer..

Redirecting unauthorized controller in ASP.NET MVC

http://stackoverflow.com/questions/977071/redirecting-unauthorized-controller-in-asp-net-mvc

code runs after the output caching module. In the worst case this could allow an authorized user to cause the page..