c# Programming Glossary: potential
Event Signature in .NET — Using a Strong Typed 'Sender'? http://stackoverflow.com/questions/1046016/event-signature-in-net-using-a-strong-typed-sender as 'object' in order to handle the full breadth of potential sender objects. Other than breaking convention which is something..
Multiple Aggregates / Repositories in one Transaction http://stackoverflow.com/questions/11445657/multiple-aggregates-repositories-in-one-transaction that it is no longer valid. But when really analysing the potential concurrency issues with this transaction I don't think there..
Open link in new TAB (WebBrowser Control) http://stackoverflow.com/questions/1286746/open-link-in-new-tab-webbrowser-control control that should open the new window . All of the other potential hacked together solutions such as obtaining the last link selected..
Converting C# knowledge to VB.NET any potential problems? http://stackoverflow.com/questions/1337253/converting-c-sharp-knowledge-to-vb-net-any-potential-problems C# knowledge to VB.NET any potential problems I have a team with people that are quite comfortable..
How to intersect two polygons? http://stackoverflow.com/questions/1526352/how-to-intersect-two-polygons own I found the Weiler Atherton algorithm to have the most potential for general polygon cutting. I used the following as a reference..
avoiding null reference exceptions http://stackoverflow.com/questions/1943465/avoiding-null-reference-exceptions find several but in many cases the identification of a potential null reference indicated a broader problem with the design...
How do I use LINQ Contains(string[]) instead of Contains(string) http://stackoverflow.com/questions/194930/how-do-i-use-linq-containsstring-instead-of-containsstring extension method unless you already have the collection of potential uids as ints then just use List int instead . List string uids..
Why is the C# “as” operator so popular? [closed] http://stackoverflow.com/questions/2139798/why-is-the-c-sharp-as-operator-so-popular generates an isinst instruction. The former method has a potential flaw in multithreaded applications as a race condition might..
Access to Modified Closure http://stackoverflow.com/questions/235455/access-to-modified-closure creation. In short it's something to be aware of as a potential trap but in this case it doesn't hurt you. See the bottom of..
What's the simplest IOC container for C#? [closed] http://stackoverflow.com/questions/2515124/whats-the-simplest-ioc-container-for-c app which I want to abstract the data layer for later potential migration to a web service for the data layer. c# ioc container..
Getting key of value of a generic Dictionary? http://stackoverflow.com/questions/255341/getting-key-of-value-of-a-generic-dictionary second firsts seconds.Add second firsts.Add first Note potential ambiguity using indexers e.g. mapping from int to int Hence..
Best practices for exception management in Java or C# http://stackoverflow.com/questions/409563/best-practices-for-exception-management-in-java-or-c-sharp if the call was successful Is forcing a caller to manage a potential exception graceful Are you being respectful to the idoms of..
Enum ToString http://stackoverflow.com/questions/479410/enum-tostring Tries to find a DescriptionAttribute for a potential friendly name for the enum MemberInfo memberInfo type.GetMember..
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.. hashing your passwords and each salt is different then a potential hacker would have to create a rainbow table for each variation..
Is using a Mutex to prevent multiple instances of the same program from running safe? http://stackoverflow.com/questions/646480/is-using-a-mutex-to-prevent-multiple-instances-of-the-same-program-from-running though even with a finally block you must deal with the potential that a process will be terminated without freeing up the mutex...
C# Events and Thread Safety http://stackoverflow.com/questions/786383/c-sharp-events-and-thread-safety you check it for null and fire it. This will eliminate a potential problem with threading where the event becomes null at the location..
ReSharper complains when method can be static, but isn't http://stackoverflow.com/questions/790281/resharper-complains-when-method-can-be-static-but-isnt sense to keep the method on the specific type there's a potential performance gain as the compiler will emit different code for..
Replacing .NET WebBrowser control with a better browser, like Chrome? http://stackoverflow.com/questions/790542/replacing-net-webbrowser-control-with-a-better-browser-like-chrome of IE with all that entails in terms of CSS screw ups potential security risks if the rendering engine wasn't patched can I..
Reliable method to get machine's MAC address in C# http://stackoverflow.com/questions/850650/reliable-method-to-get-machines-mac-address-in-c-sharp Packet Miniport or some type of VPN connection it has the potential of being chosen. As far as I can tell there is no way to distinguish..
What is quicker, switch on string or elseif on type? http://stackoverflow.com/questions/94305/what-is-quicker-switch-on-string-or-elseif-on-type to make up the majority of the ones that you see. The potential problem with the approach is that as the number of types increases..
|