c# Programming Glossary: concepts
How do you do Impersonation in .NET? http://stackoverflow.com/questions/125341/how-do-you-do-impersonation-in-net question Here is some good overview of .NET impersonation concepts. Michiel van Otegem WindowsImpersonationContext made easy WindowsIdentity.Impersonate..
Should I learn VB.NET or C#? [closed] http://stackoverflow.com/questions/1653895/should-i-learn-vb-net-or-c those who know it that both VB.NET and C# have The same concepts VB.NET is simpler as it is more like English statements but..
Best Practice for Exception Handling in a Windows Forms Application? http://stackoverflow.com/questions/183589/best-practice-for-exception-handling-in-a-windows-forms-application I haven't got yet is a feel for how to translate the basic concepts into a good exception handling model in my application. Would..
The need for volatile modifier in double checked locking in .NET http://stackoverflow.com/questions/1964731/the-need-for-volatile-modifier-in-double-checked-locking-in-net series on multithreading give a nice overview of the concepts too http msmvps.com blogs luisabreu archive 2009 06 29 multithreading..
What's the simplest IOC container for C#? [closed] http://stackoverflow.com/questions/2515124/whats-the-simplest-ioc-container-for-c that will not constrain you as you learn more advanced concepts . Selecting the simplest possible container isn't likely to..
Learning C#, ASP.NET 3.5 - what order should I learn in / what to skip? http://stackoverflow.com/questions/282086/learning-c-asp-net-3-5-what-order-should-i-learn-in-what-to-skip like value reference Types Classes object oriented concepts etc since they should come first before specifics. Here I am..
What are the differences between various threading synchronization options in C#? http://stackoverflow.com/questions/301160/what-are-the-differences-between-various-threading-synchronization-options-in-c and suspend threads. Mutex Semaphores are OS level concepts. e.g with a named mutex you could synchronize across multiple..
What do programmers mean when they say, “Code against an interface, not an object.”? http://stackoverflow.com/questions/4456424/what-do-programmers-mean-when-they-say-code-against-an-interface-not-an-objec key for me and other people wanting to learn to grasp the concepts. Thanks so much. c# .net tdd inversion of control share improve..
Main method code entirely inside try/catch: Is it bad practice? http://stackoverflow.com/questions/4827628/main-method-code-entirely-inside-try-catch-is-it-bad-practice to COM rather than the .NET Framework but the general concepts regarding error handling are equally applicable to both environments...
What is the difference between null and System.DBNull.Value? http://stackoverflow.com/questions/4958379/what-is-the-difference-between-null-and-system-dbnull-value thing in this case null to represent two very different concepts in this case an invalid reference versus a nonexistent value..
Multithreading reference? http://stackoverflow.com/questions/601558/multithreading-reference good reference for multithreading programming in terms of concepts with good examples using C C# c# c multithreading reference..
What is the difference between Decimal, Float and Double in C#? http://stackoverflow.com/questions/618535/what-is-the-difference-between-decimal-float-and-double-in-c it's good to use decimal. This is usually suitable for any concepts invented by humans financial values are the most obvious example..
How to read data of an Excel file using C#? http://stackoverflow.com/questions/657131/how-to-read-data-of-an-excel-file-using-c share improve this question OK One of the more difficult concepts to grasp about Excel VSTO programming is that you don't refer..
The call stack does not say “where you came from”, but “where you are going next”? http://stackoverflow.com/questions/6595473/the-call-stack-does-not-say-where-you-came-from-but-where-you-are-going-next Moreover the stack is just an implementation detail of the concepts of continuation and activation . There is no requirement that.. and activation . There is no requirement that both concepts be implemented by the same stack there could be two stacks one..
In MVVM should the ViewModel or Model implement INotifyPropertyChanged? http://stackoverflow.com/questions/772214/in-mvvm-should-the-viewmodel-or-model-implement-inotifypropertychanged . I'm still cognitively putting together the MVVM concepts so I don't know if you have to put the INotifyPropertyChanged..
MVC Razor view nested foreach's model http://stackoverflow.com/questions/8894442/mvc-razor-view-nested-foreachs-model Tree How does the Model Binder work All three of these concepts link together to get an answer. How do the LabelFor and other..
ServiceStack.Net Redis: Storing Related Objects vs. Related Object Ids http://stackoverflow.com/questions/8914349/servicestack-net-redis-storing-related-objects-vs-related-object-ids that includes all you need to know about both Redis concepts and ServiceStack.Net concepts or do we need to integrate documentation.. to know about both Redis concepts and ServiceStack.Net concepts or do we need to integrate documentation from both aspects separately..
Why is Multiple Inheritance not allowed in Java or C#? http://stackoverflow.com/questions/995255/why-is-multiple-inheritance-not-allowed-in-java-or-c to do a survey of all the languages figure out the common concepts and decide how to express them in a language neutral manner...
|