¡@

Home 

c# Programming Glossary: maintainability

How to pass an array into a SQL Server stored procedure

http://stackoverflow.com/questions/11102358/how-to-pass-an-array-into-a-sql-server-stored-procedure

the list as '1 2 3 12' ... I recommend you compare the maintainability and performance of these options against the method you selected...

Displaying a table in PHP with repeated columns

http://stackoverflow.com/questions/11528436/displaying-a-table-in-php-with-repeated-columns

performance speed and memory usage for readability and maintainability. The algorithm is short and simple to understand. If performance..

Should Usings be inside or outside the namespace

http://stackoverflow.com/questions/125319/should-usings-be-inside-or-outside-the-namespace

here is just that there is a difference and it affects the maintainability of your code. It's also interesting to note what happens if..

Do try/catch blocks hurt performance when exceptions are not thrown?

http://stackoverflow.com/questions/1308432/do-try-catch-blocks-hurt-performance-when-exceptions-are-not-thrown

a variable is shared between scopes. I'm not asking about maintainability of the code or even handling the right exceptions the code in..

How to start unit testing or TDD?

http://stackoverflow.com/questions/1365943/how-to-start-unit-testing-or-tdd

a wider spread of topics such as test doubles strategies maintainability etc. Either book is good it depends what you want from it. Also..

Write a well designed async / non-async API

http://stackoverflow.com/questions/14870478/write-a-well-designed-async-non-async-api

both async and synchronous APIs then you'll encounter a maintainability problem. You really need to implement it twice once async and..

Parsing Performance (If, TryParse, Try-Catch)

http://stackoverflow.com/questions/150114/parsing-performance-if-tryparse-try-catch

is low is an abuse of exception handling at the expense of maintainability and good coding practices. Follow sound software engineering..

Get name of property as a string

http://stackoverflow.com/questions/2820660/get-name-of-property-as-a-string

using the answer I accepted I'm trying to improve the maintainability of some code involving reflection. The app has a .NET Remoting..

c# XmlSerializer serialize generic List of interface

http://stackoverflow.com/questions/3704807/c-sharp-xmlserializer-serialize-generic-list-of-interface

you're serializing which limits extensibility and lowers maintainability. You can do it by using an overload of the constructor of XmlSerializer..

C# - How can I “overload” a delegate?

http://stackoverflow.com/questions/3747948/c-sharp-how-can-i-overload-a-delegate

Is it bad practice to return from within a try catch finally block?

http://stackoverflow.com/questions/449099/is-it-bad-practice-to-return-from-within-a-try-catch-finally-block

return where it makes sense improves readability and maintainability and makes your code simpler to understand. You shouldn't care..

WPF MVVM Newbie - how should the ViewModel close the form?

http://stackoverflow.com/questions/501886/wpf-mvvm-newbie-how-should-the-viewmodel-close-the-form

and wired up via an IOC container so no testability or maintainability is lost. It seems rather silly that the accepted answer is at..

How to release the occupied memory

http://stackoverflow.com/questions/5191897/how-to-release-the-occupied-memory

Dispose false is optimal in terms of ' readability and maintainability. Dispose False MyBase.Finalize End Sub End Class Public Shared..

When is it better to store flags as a bitmask rather than using an associative table?

http://stackoverflow.com/questions/5708239/when-is-it-better-to-store-flags-as-a-bitmask-rather-than-using-an-associative-t

this would be quite painful. I'm assuming you care about maintainability. From a maintainability point of view the bitmask is not as.. I'm assuming you care about maintainability. From a maintainability point of view the bitmask is not as expressive as the underlying..

Using Inner classes in C#

http://stackoverflow.com/questions/804453/using-inner-classes-in-c-sharp

minimal surface area between classes will greatly ease the maintainability of your code for future expansion or alteration. share improve..

Any reason to write the “private” keyword in C#?

http://stackoverflow.com/questions/8479214/any-reason-to-write-the-private-keyword-in-c

to make the type private very explicitly. This helps with maintainability of your code over time. This can help with other developers..

What's the difference between DataContractJsonSerializer and JavaScriptSerializer?

http://stackoverflow.com/questions/9301878/whats-the-difference-between-datacontractjsonserializer-and-javascriptserialize

there for AJAX serialization and to address your speed vs. maintainability questions it might be worth investigating them to find a solution.. a solution that meets the needs of all the teams to reduce maintainability issues in the long term as everybody does things their own way...

Simplify Overriding Equals(), GetHashCode() in C# for Better Maintainability

http://stackoverflow.com/questions/9707918/simplify-overriding-equals-gethashcode-in-c-sharp-for-better-maintainabilit

an existing implementation somewhere c# equals hashcode maintainability share improve this question MSDN actually doesn't say don't..