c# Programming Glossary: potentially
Code for decoding/encoding a modified base64 URL http://stackoverflow.com/questions/1228701/code-for-decoding-encoding-a-modified-base64-url normal base64 decoding now uses encodedText But I need to potentially add one or two ' ' chars to the end which looks a little more..
How to remove illegal characters from path and filenames? http://stackoverflow.com/questions/146134/how-to-remove-illegal-characters-from-path-and-filenames into a legitimate but probably unintended one. Edit Or a potentially 'better' solution using Regex's. string illegal M a ry h ad..
Are there any suggestions for developing a C# coding standards / best practices document? [closed] http://stackoverflow.com/questions/14967/are-there-any-suggestions-for-developing-a-c-sharp-coding-standards-best-pract as any to ask for some suggestions. I realise that I am potentially opening a door to a whole world of disagreement about 'the best..
When to use ref vs out http://stackoverflow.com/questions/1516876/when-to-use-ref-vs-out or the call whether the initial value is relevant and potentially preserved or thrown away. As a minor difference an out parameter..
Volatile vs. Interlocked vs. lock http://stackoverflow.com/questions/154551/volatile-vs-interlocked-vs-lock but thread B may see those writes as being delayed or even potentially in the wrong order . A solution would be to lock but you could..
How to select min and max values of a column in a datatable? http://stackoverflow.com/questions/2442525/how-to-select-min-and-max-values-of-a-column-in-a-datatable be slower because you have to iterate twice. You could potentially use Linq Aggregate but the syntax isn't going to be much prettier..
What guarantees are there on the run-time complexity (Big-O) of LINQ methods? http://stackoverflow.com/questions/2799427/what-guarantees-are-there-on-the-run-time-complexity-big-o-of-linq-methods
Drag and drop to Desktop / Explorer http://stackoverflow.com/questions/3040415/drag-and-drop-to-desktop-explorer IDataObject interactions so unless your files are potentially very large and aren't already in the filesystem I would try..
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 end up with 1000 invalid rationals If it does then we've potentially wasted a load of work if we're about to fill in the array with..
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 pfx team has this to say Task.Dispose exists due to Task potentially wrapping an event handle used when waiting on the task to complete.. thread actually has to block as opposed to spinning or potentially executing the task it's waiting on . If all you're doing is..
Fastest way to interface between live (unsaved) Excel data and C# objects http://stackoverflow.com/questions/3840270/fastest-way-to-interface-between-live-unsaved-excel-data-and-c-sharp-objects from other 3rd party add ins that could otherwise potentially cause problems. The down side to this however is that a shimmed..
Is this thread.abort() normal and safe? http://stackoverflow.com/questions/421389/is-this-thread-abort-normal-and-safe Abort free code You're now launching a new thread for potentially every keypress . This is not only going to kill performance..
Can a C# thread really cache a value and ignore changes to that value on other threads? http://stackoverflow.com/questions/458173/can-a-c-sharp-thread-really-cache-a-value-and-ignore-changes-to-that-value-on-ot the volatile keyword . They claim the following code will potentially loop forever. Now I agree it's good practice to lock your variables..
Is BCrypt a good hashing algorithm to use in C#? Where can I find it? http://stackoverflow.com/questions/481160/is-bcrypt-a-good-hashing-algorithm-to-use-in-c-where-can-i-find-it even if you do all this a determined hacker still could potentially figure out the passwords it would just take him a really long..
.Net vs Java Garbage Collector http://stackoverflow.com/questions/492703/net-vs-java-garbage-collector improving locality and allowing the eden collection to potentially not cause a full pause as well as pre tenuring approaches which..
Fastest Way of Inserting in Entity Framework http://stackoverflow.com/questions/5940225/fastest-way-of-inserting-in-entity-framework TransactionScope and the insertion is Huge 4000 it can potentially last more than 10 minutes default timeout of transactions and..
Why is inserting entities in EF 4.1 so slow compared to ObjectContext? http://stackoverflow.com/questions/5943394/why-is-inserting-entities-in-ef-4-1-so-slow-compared-to-objectcontext at the proper points is considered as advanced and can potentially introduce subtle bugs into your application if not used correctly..
In C#, why can't a List<string> object be stored in a List<object> variable http://stackoverflow.com/questions/6557/in-c-why-cant-a-liststring-object-be-stored-in-a-listobject-variable know if that is legal but that sort of cast is actually potentially useful. In this case you are going from a more general class..
Random number generator only generating one random number http://stackoverflow.com/questions/767999/random-number-generator-only-generating-one-random-number outcome even more random but what we are actually doing is potentially breaking the internal implementation and we could also start..
|