¡@

Home 

c# Programming Glossary: discouraged

What's the best way to watchdog a desktop application?

http://stackoverflow.com/questions/11146381/whats-the-best-way-to-watchdog-a-desktop-application

every answer I've seen involved some kind of hack that is discouraged by Microsoft and will likely stop working in future OS updates...

Catch multiple Exceptions at once?

http://stackoverflow.com/questions/136035/catch-multiple-exceptions-at-once

multiple Exceptions at once It is discouraged to simply catch System.Exception instead only the known Exceptions..

Naming Convention in c#

http://stackoverflow.com/questions/1618316/naming-convention-in-c-sharp

else. Hungarian notation in the style of Win32 is discouraged although many places use m_ or _ as a prefix for instance variables...

Why is TypedReference behind the scenes? It's so fast and safe… almost magical!

http://stackoverflow.com/questions/4764573/why-is-typedreference-behind-the-scenes-its-so-fast-and-safe-almost-magical

it. Does anyone know why the use of TypedReference is so discouraged implicitly by lack of documentation I've found great uses for.. doesn't even allow incorrect usage of this type why is it discouraged It doesn't seem to be unsafe or anything... Other uses I've.. finally Do any cleanup needed So why are uses like this discouraged by lack of documentation Any particular safety reasons It seems..

Does the @ prefix for delegates have any special meaning?

http://stackoverflow.com/questions/724912/does-the-prefix-for-delegates-have-any-special-meaning

that are not keywords is permitted but strongly discouraged as a matter of style. from C# Language Specification 2.4.2 Identifiers..

Best practices for using and persisting enums

http://stackoverflow.com/questions/746812/best-practices-for-using-and-persisting-enums

enum pattern . Using plain constants Integer or similar is discouraged as you lose type safety and make it hard to understand which..

c# working with Entity Framework in a multi threaded server

http://stackoverflow.com/questions/9415955/c-sharp-working-with-entity-framework-in-a-multi-threaded-server

safe You could use only one context but it's strongly discouraged unless you really know what you are doing . I see two main problems..