c# Programming Glossary: involved
C# How to find if an event is hooked up http://stackoverflow.com/questions/1129517/c-sharp-how-to-find-if-an-event-is-hooked-up not. I've looked around but I've only found solutions that involved modifying the internals of the object that contains the event...
For i = 0, why is (i += i++) equal to 0? http://stackoverflow.com/questions/13516689/for-i-0-why-is-i-i-equal-to-0 the calculation result What actually happens is more involved than that take a look at MSDN 7.5.9 Postfix increment and decrement..
Performance surprise with “as” and nullable types http://stackoverflow.com/questions/1583050/performance-surprise-with-as-and-nullable-types which I'd have expected to be slower given the iterators involved beats the as code. Is the .NET implementation of isinst for..
Open source cad drawing (dwg) library in C# http://stackoverflow.com/questions/169390/open-source-cad-drawing-dwg-library-in-c-sharp
XML Serialization and Inherited Types http://stackoverflow.com/questions/20084/xml-serialization-and-inherited-types fine to just add the XML attributes to all of the classes involved and everything would be peachy. Sadly thats not the case So..
Reading large text files with streams in C# http://stackoverflow.com/questions/2161895/reading-large-text-files-with-streams-in-c-sharp for text in 1GB ish text files much larger than the files involved here and achieved a significant performance gain by using a..
Transactions in .net http://stackoverflow.com/questions/224689/transactions-in-net and to talk to multiple providers although DTC will get involved if you talk to more than one . For example using TransactionScope..
Is it better to create a singleton to access unity container or pass it through the application? http://stackoverflow.com/questions/2386487/is-it-better-to-create-a-singleton-to-access-unity-container-or-pass-it-through however I suspect that there may be more than one TestCase involved in which case you may want to inject an Abstract Factory instead..
C# Object Pooling Pattern implementation http://stackoverflow.com/questions/2510975/c-sharp-object-pooling-pattern-implementation lazy vs. eager loading etc. A There is no prioritization involved for simplicity's sake just assume that I would create the pool..
Under what circumstances is an SqlConnection automatically enlisted in an ambient TransactionScope Transaction? http://stackoverflow.com/questions/2884863/under-what-circumstances-is-an-sqlconnection-automatically-enlisted-in-an-ambien but like before I'm not sure how two connections involved in the same transaction against the same database may interact.....
workarounds for nameof() operator in C#: typesafe databinding http://stackoverflow.com/questions/301809/workarounds-for-nameof-operator-in-c-typesafe-databinding I remember there was a workaround for .NET 3.5 which involved lambda expressions so that you could get the effect of missing..
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 then you will always have cross process marshaling involved that will overwhelm any optimizations you can do by switching.. Excel Dna uses .NET there need not be any COM interop involved when talking to Excel as an .xll the native interface can be..
Calling virtual method in base class constructor http://stackoverflow.com/questions/448258/calling-virtual-method-in-base-class-constructor constructor document it very strongly. So long as everyone involved is aware of what it's doing it shouldn't cause too many problems...
WPF chart controls [closed] http://stackoverflow.com/questions/577278/wpf-chart-controls for smoother zooming. Full Disclosure I have been heavily involved in development of Visiblox hence I know that library in much..
implicit vs explicit interface implementation [duplicate] http://stackoverflow.com/questions/598714/implicit-vs-explicit-interface-implementation in the comments in the Brad's blog that there is boxing involved when using explicit implementation on value types so be aware..
How to generate and validate a software license key? http://stackoverflow.com/questions/599837/how-to-generate-and-validate-a-software-license-key and validate a software license key I'm currently involved in developing a product developed in C# that'll be available..
Should you obfuscate a commercial .Net application? http://stackoverflow.com/questions/71195/should-you-obfuscate-a-commercial-net-application generate parts of log lines based on the name of the class involved these messages can become much more difficult to interpret...
Embedding one dll inside another as an embedded resource and then calling it from my code http://stackoverflow.com/questions/96732/embedding-one-dll-inside-another-as-an-embedded-resource-and-then-calling-it-fro
How can I make a .Net Winforms application that only runs in the System Tray? http://stackoverflow.com/questions/995195/how-can-i-make-a-net-winforms-application-that-only-runs-in-the-system-tray but like many things .NET there are a host of subtleties involved in doing it right . The tutorial mentioned by Brad gives a good..
|