¡@

Home 

c# Programming Glossary: maintain

.NET HashTable Vs Dictionary - Can the Dictionary be as fast?

http://stackoverflow.com/questions/1089132/net-hashtable-vs-dictionary-can-the-dictionary-be-as-fast

TKey TValue and System.Collections.Hashtable classes both maintain a hash table data structure internally. None of them guarantee.. between them is that Dictionary relies on chaining maintaining a list of items for each hash table bucket to resolve collisions..

Best practice to make a multi language application in C#/WinForms? [closed]

http://stackoverflow.com/questions/119568/best-practice-to-make-a-multi-language-application-in-c-winforms

in the resource file but I find this approach harder to maintain since the labels are dispersed throughout the application. The..

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

be best. So far I have Advantages for in Code Easier to maintain don't need to run a SQL script to update queries Easier to port.. not a fan of stored procedures Stored Procedures are MORE maintainable because You don't have to recompile your C# app whenever.. the worst thing you can do when you're trying to build a maintainable application Agreed which is why storedprocs are a bad thing...

C# variance problem: Assigning List<Derived> as List<Base>

http://stackoverflow.com/questions/2033912/c-sharp-variance-problem-assigning-listderived-as-listbase

around this in your situation in C# 2 do you need to maintain one list or would you be happy creating a new list If that's..

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

to avoid. The question then is which principle is better 1 maintain the invariant that overload resolution does not consider return..

What is the C# Using block and why should I use it?

http://stackoverflow.com/questions/212198/what-is-the-c-sharp-using-block-and-why-should-i-use-it

Reading large text files with streams in C#

http://stackoverflow.com/questions/2161895/reading-large-text-files-with-streams-in-c-sharp

The Read and Write methods of BufferedStream automatically maintain the buffer. http msdn.microsoft.com en us library system.io.bufferedstream.aspx..

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

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

which is hard to understand hard to reason about hard to maintain that is typically not noticably faster than the corresponding..

C# Object Pooling Pattern implementation

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

order that they were created which means that we have to maintain references to them but mark them as in use or not . In the worst.. library like Castle but I won't get into that . It also maintains a reference to the Pool that creates it so that when we Dispose..

Why C# doesn't implement indexed properties?

http://stackoverflow.com/questions/2806894/why-c-sharp-doesnt-implement-indexed-properties

budget we had to design implement test document ship and maintain the gotta have features and discovered that we were 100 over.. we spend designing implementing testing documenting or maintaining nice feature X is a minute we can't spend on awesome features..

How to provide user name and password when connecting to a network share

http://stackoverflow.com/questions/295538/how-to-provide-user-name-and-password-when-connecting-to-a-network-share

I prefer the latter as I sometimes need to maintain multiple credentials for different locations. I wrap it into..

how to do subquery in LINQ

http://stackoverflow.com/questions/418609/how-to-do-subquery-in-linq

c c.LastName.Contains searchString You want to maintain good control over what gets sent to the database. In the original..

Casting vs using the 'as' keyword in the CLR

http://stackoverflow.com/questions/496096/casting-vs-using-the-as-keyword-in-the-clr

Let's worry about correctness and consistency. I maintain that is and cast or is and as are both unsafe when dealing with.. have a convention which I can use consistently. I also maintain that the as then null check gives a better separation of concerns...

What is the difference between Decimal, Float and Double in C#?

http://stackoverflow.com/questions/618535/what-is-the-difference-between-decimal-float-and-double-in-c

with so it's not important for the expected results to maintain the decimal accuracy . Floating binary point types are much..

Resize image proportionally with MaxHeight and MaxWidth constraints

http://stackoverflow.com/questions/6501797/resize-image-proportionally-with-maxheight-and-maxwidth-constraints

and minimum automatically biggest size possible and also maintain the ratio. c# .net winforms image processing gdi share improve..

What's the best way to learn C# quickly? [closed]

http://stackoverflow.com/questions/72893/whats-the-best-way-to-learn-c-sharp-quickly

learning as they knock out production code they should maintain their own sandbox or playpen projects for trying stuff out...

Create Generic method constraining T to an Enum

http://stackoverflow.com/questions/79126/create-generic-method-constraining-t-to-an-enum

appreciated thanks. Have settled on I've left the loop to maintain case insensitivity I am usng this when parsing XML public static..

How to render a formula in WPF or WinForms

http://stackoverflow.com/questions/8899204/how-to-render-a-formula-in-wpf-or-winforms

strings. Cons There is no Windows version of the library maintained and tested . The article suggests memory leaks and other issues.. that could appear because of this. One have to adjust and maintain the windows version by its own. The general approach has unnatural..

Redirecting unauthorized controller in ASP.NET MVC

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

breaks the DRY principal and is obviously cumbersome to maintain. c# asp.net mvc redirect authorization share improve this..