c# Programming Glossary: require
Public Fields versus Automatic Properties http://stackoverflow.com/questions/1180860/public-fields-versus-automatic-properties when a field is just there to hold a value and doesn't require any computation to get or set. For these we would all do this..
Parse JSON in C# http://stackoverflow.com/questions/1212344/parse-json-in-c-sharp any results. Could someone help me with returning what I require the results ready to print out to the screen Edit Json.NET works..
How can I decode HTML characters in C#? http://stackoverflow.com/questions/122641/how-can-i-decode-html-characters-in-c 4.0 you can also use WebUtility.HtmlDecode which does not require an extra assembly reference as it is available in the System.Net..
Elevating process privilege programatically? http://stackoverflow.com/questions/133379/elevating-process-privilege-programatically embedding the appropriate manifest in your application to require the 'highestAvailable' execution level this will cause the UAC..
TransactionScope automatically escalating to MSDTC on some machines? http://stackoverflow.com/questions/1690892/transactionscope-automatically-escalating-to-msdtc-on-some-machines it's actions in a transaction. We're aiming to not require the MSDTC service to be enabled on our end user's machines... would result in multiple physical TCP connections and thus require escalation. I see some of your developers have SQL2005 and others..
C# - Convert UTC/GMT time to local time http://stackoverflow.com/questions/179940/c-sharp-convert-utc-gmt-time-to-local-time
What is the correct way to create a single instance application? http://stackoverflow.com/questions/19147/what-is-the-correct-way-to-create-a-single-instance-application article is advantageous for two reasons. First it does not require a dependency on the Microsoft.VisualBasic assembly. If my project..
Which .NET Dependency Injection frameworks are worth looking into? [closed] http://stackoverflow.com/questions/21288/which-net-dependency-injection-frameworks-are-worth-looking-into a programming pattern and is facilitated by but does not require an IoC Inversion of Control Framework. IoC Frameworks just make..
Why .NET String is immutable? [duplicate] http://stackoverflow.com/questions/2365272/why-net-string-is-immutable identity. This means that abc ab c . While this doesn't require immutability the fact that a reference to such a string will.. will always equal abc throughout its lifetime which does require immutability makes uses as keys where maintaining equality to..
When to Use Static Classes in C# http://stackoverflow.com/questions/241339/when-to-use-static-classes-in-c-sharp code with test code. Again we can wrap them up but it'll require us to change large parts of our code just to be able to accept.. that takes 10 parameters. Only the first three are really required parameters 4 7 are optional. But if parameter 6 is specified.. 4 7 are optional. But if parameter 6 is specified 7 9 are required to be filled in as well... Had we created a class with the..
How to avoid Dependency Injection constructor madness? http://stackoverflow.com/questions/2420193/how-to-avoid-dependency-injection-constructor-madness
When to use struct in C#? http://stackoverflow.com/questions/521298/when-to-use-struct-in-c What we don't see here is any attempt or proof of requirement to keep structs immutable or maintaining an instance size.. . What happens is because Entry is a struct it does not require initialization like a reference type. This is both the beauty.. remain intact during its use unless its destruction is required to satisfy rule #1 ... what do we take away from this in short..
Developing Internet Explorer Extensions? http://stackoverflow.com/questions/5643819/developing-internet-explorer-extensions is because F5 is considered as 'navigation' and it would require to listen to navigate event maybe . I'll try to fix that later...
C# DLL config file http://stackoverflow.com/questions/594298/c-sharp-dll-config-file The safest and simplest way of getting around this is to require that the assembly which is loading your DLL also provide some..
Deep cloning objects in C# http://stackoverflow.com/questions/78536/deep-cloning-objects-in-c-sharp it in our stuff. As mentioned elsewhere it does require your objects to be serializable. using System using System.IO..
C# Events and Thread Safety http://stackoverflow.com/questions/786383/c-sharp-events-and-thread-safety from reading about optimizations that this might also require the event member to be volatile but Jon Skeet states in his.. threads when in reality it seems to me that events require much more care than this before they can be used as part of.. to your code. To actually protect against other threads requires a lot more work. Update in response to Eric Lippert's blog..
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 order but I have another application in mind that will require more err... control. I need A browser that can integrate inside.. called Awesomium . It comes with a .NET api but requires quite a few hacks for rendering the examples draw the browser..
|