c# Programming Glossary: rely
When to use .First and when to use .FirstOrDefault with LINQ? http://stackoverflow.com/questions/1024559/when-to-use-first-and-when-to-use-firstordefault-with-linq it is legal for the sequence to be empty. You should not rely on exception handling for the check. It is bad practice and..
Public Fields versus Automatic Properties http://stackoverflow.com/questions/1180860/public-fields-versus-automatic-properties works differently on variables vs. properties so if you rely on reflection it's easier to use all properties. You can't databind..
Should I use public properties and private fields or public fields for data? http://stackoverflow.com/questions/1277572/should-i-use-public-properties-and-private-fields-or-public-fields-for-data works differently on variables vs. properties so if you rely on reflection it's easier to use all properties. You can't databind..
Order of event handler execution http://stackoverflow.com/questions/1645478/order-of-event-handler-execution However this is an implementation detail and I would not rely on this behavior staying the same in future versions since it..
How can I programmatically generate keypress events in C#? http://stackoverflow.com/questions/1645815/how-can-i-programmatically-generate-keypress-events-in-c target 0 key RoutedEvent routedEvent This solution doesn't rely on native calls or Windows internals and should be much more..
Embedding JavaScript engine into .NET (C#) http://stackoverflow.com/questions/172753/embedding-javascript-engine-into-net-c The command line solutions are not what I'd need I cannot rely on anything else than CLR I need to call methods from to JavaScript..
Creating application shortcut in a directory http://stackoverflow.com/questions/234231/creating-application-shortcut-in-a-directory at vbAccelerator This code uses interop but does not rely on WSH. Using this class the code to create the shortcut is..
Why can't I define a default constructor for a struct in .NET? http://stackoverflow.com/questions/333829/why-cant-i-define-a-default-constructor-for-a-struct-in-net basic rule in C# is the default value for any type can't rely on any initialization . Now they could have allowed parameterless..
Image.Save(..) throws a GDI+ exception because the memory stream is closed http://stackoverflow.com/questions/336387/image-save-throws-a-gdi-exception-because-the-memory-stream-is-closed how i could save an image with the stream closed I cannot rely on the developers to remember to close the stream after the..
Is it considered acceptable to not call Dispose() on a TPL Task object? http://stackoverflow.com/questions/3734280/is-it-considered-acceptable-to-not-call-dispose-on-a-tpl-task-object handle will never be allocated ... it's likely better to rely on finalization to take care of things. Update Oct 2012 Stephen..
DateTime vs DateTimeOffset http://stackoverflow.com/questions/4331189/datetime-vs-datetimeoffset I retrieve it I have to assume its Unspecified . I can't rely that my local calendar is the same calendar that it was originally..
Is it safe to check floating point values for equality to 0 in C#/.NET? http://stackoverflow.com/questions/485175/is-it-safe-to-check-floating-point-values-for-equality-to-0-in-c-net values for equality to 0 in C# .NET I know you can't rely on equality between double or decimal type values normally but..
Disposing WPF User Controls http://stackoverflow.com/questions/502761/disposing-wpf-user-controls application closes. If at all possible I don't want to rely on consumers of my control remembering to call a specific Dispose..
The Best Place to Start Learning C++ [closed] http://stackoverflow.com/questions/525726/the-best-place-to-start-learning-c c# c .net c share improve this question First don't rely on tutorials. That's a bad idea in general but especially for..
Using C++ Class DLL in C# Application http://stackoverflow.com/questions/569603/using-c-class-dll-in-c-sharp-application DLL in C# Application I have an unmanaged C DLL which merely exports a single class not COM...it's just a simple C class.. want to use this class in C# but am told that it cannot merely be imported into C#. What is the right way to use this class.. directory is normally sufficient. If the functions do not rely on instances of the class then even simpler is P Invoke share..
Calling null on a class vs Dispose() http://stackoverflow.com/questions/574019/calling-null-on-a-class-vs-dispose for garbage collection when your object is so you can just rely on FileStream having a finalizer if necessary it may refer to..
How to add a Timeout to Console.ReadLine()? http://stackoverflow.com/questions/57615/how-to-add-a-timeout-to-console-readline to submit his input. And obviously the function does not rely on a busy wait. Instead it uses proper multithreading techniques..
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 peer to peer networked as opposed to server client which rely on all clients generating exactly the same results every time..
To return IQueryable<T> or not return IQueryable<T> http://stackoverflow.com/questions/718624/to-return-iqueryablet-or-not-return-iqueryablet repository is no longer properly unit testable you can't rely on a it working b what it does the caller could add a non translatable..
Programming P2P application http://stackoverflow.com/questions/8523330/programming-p2p-application the other endpoint this decision. usually best to not to rely on a well known port for P2P clients. Because two clients behind..
|