¡@

Home 

c# Programming Glossary: documentation

Design - Where should objects be registered when using Windsor

http://stackoverflow.com/questions/1410719/design-where-should-objects-be-registered-when-using-windsor

ObservableCollection not noticing when Item in it changes (even with INotifyPropertyChanged)

http://stackoverflow.com/questions/1427471/observablecollection-not-noticing-when-item-in-it-changes-even-with-inotifyprop

EDIT Okay that's twice today I've been bitten by the MSDN documentation being wrong. In the link I gave you it says Occurs when an item..

C# Lambda expression, why should I use this?

http://stackoverflow.com/questions/167343/c-sharp-lambda-expression-why-should-i-use-this

this I have quickly read the Microsoft Lambda Expression documentation. I see example that have help me to understand more like this..

FileSystemWatcher Changed event is raised twice

http://stackoverflow.com/questions/1764809/filesystemwatcher-changed-event-is-raised-twice

feature of the FileSystemWatcher class. This is from the documentation of the class You may notice in certain situations that a single..

What NoSQL solutions are out there for .NET? [closed]

http://stackoverflow.com/questions/1777103/what-nosql-solutions-are-out-there-for-net

uses my ServiceStack's open source C# client . All the documentation and tutorials for the ServiceStack's C# Redis Client is available..

Capturing console output from a .NET application (C#)

http://stackoverflow.com/questions/186822/capturing-console-output-from-a-net-application-c

property. A full sample is contained in the linked MSDN documentation the only caveat is that you may have to redirect the standard..

Encrypt/Decrypt string in .NET

http://stackoverflow.com/questions/202011/encrypt-decrypt-string-in-net

a working example derived from the RijndaelManaged Class documentation and the MCTS Training Kit . EDIT 2012 April This answer was..

Getting the size of a field in bytes with C#

http://stackoverflow.com/questions/207592/getting-the-size-of-a-field-in-bytes-with-c-sharp

after marshalling not the actual size in memory. As the documentation explicitly states The size returned is the actually the size..

Why is lock(this) {…} bad?

http://stackoverflow.com/questions/251391/why-is-lockthis-bad

is lock this &hellip bad The MSDN documentation says that public class SomeObject public void SomeOperation.. this unless it has been documented. Even then relying on documentation to prevent a problem is sub optimal. Finally there is the common..

Can't operator == be applied to generic types in C#?

http://stackoverflow.com/questions/390900/cant-operator-be-applied-to-generic-types-in-c

be applied to generic types in C# According to the documentation of the operator in MSDN For predefined value types the equality..

Parsing JSON using Json.net

http://stackoverflow.com/questions/401756/parsing-json-using-json-net

trying to parse some JSON using the JSon.Net library. The documentation seems a little sparse and I'm confused as to how to accomplish..

How do the major C# DI/IoC frameworks compare?

http://stackoverflow.com/questions/4581791/how-do-the-major-c-sharp-di-ioc-frameworks-compare

especially in terms of clear and concise syntax consistent documentation good community support and performance are all important factors..

Best way to parse command line arguments in C#? [closed]

http://stackoverflow.com/questions/491595/best-way-to-parse-command-line-arguments-in-c

same API different namespace . An example from the documentation bool show_help false List string names new List string int repeat..

Proper use of the IDisposable interface

http://stackoverflow.com/questions/538060/proper-use-of-the-idisposable-interface

of the IDisposable interface I know from reading the MSDN documentation that the primary use of the IDisposable interface is to clean..

Developing Internet Explorer Extensions?

http://stackoverflow.com/questions/5643819/developing-internet-explorer-extensions

This would include code samples or links to good ones or documentation on the process or anything. I really want to do this but I'm.. want to do this but I'm hitting a giant wall with lousy documentation lousy code example code lack thereof. Any help resources you..

Using .NET, how can you find the mime type of a file based on the file signature not the extension

http://stackoverflow.com/questions/58510/using-net-how-can-you-find-the-mime-type-of-a-file-based-on-the-file-signature

there's a function called FindMimeFromData . From the documentation MIME type detection or data sniffing refers to the process of..

How to implement custom JsonConverter in JSON.NET to deserialize a List of base class objects

http://stackoverflow.com/questions/8030538/how-to-implement-custom-jsonconverter-in-json-net-to-deserialize-a-list-of-base

custom JsonConverter implementation to handle this. The documentation and examples around this are pretty sparse on the net. I can't..

What's the use/meaning of the @ character in variable names in C#?

http://stackoverflow.com/questions/91817/whats-the-use-meaning-of-the-character-in-variable-names-in-c

this.paramsField value I searched through the VS 2008 c# documentation but couldn't find anything about it. Also searching Google didn't..

Application developers wanting to start web development?

http://stackoverflow.com/questions/1032245/application-developers-wanting-to-start-web-development

ASP.NET Tutorial http www.w3schools.com asp default.asp Documentation http www.asp.net Servlets Java http java.sun.com docs books..

Do C# Timers elapse on a separate thread?

http://stackoverflow.com/questions/1435876/do-c-sharp-timers-elapse-on-a-separate-thread

multithreading timer share improve this question MSDN Documentation on Timers states The System.Threading.Timer class makes callbacks..

Order of items in classes: Fields, Properties, Constructors, Methods [closed]

http://stackoverflow.com/questions/150479/order-of-items-in-classes-fields-properties-constructors-methods

improve this question According to the StyleCop Rules Documentation the ordering is as follows. Within a class struct or interface..

Finding the default application for opening a particular file type on Windows

http://stackoverflow.com/questions/162331/finding-the-default-application-for-opening-a-particular-file-type-on-windows

HKEY_CLASSES_ROOT for the extension and action details. Documentation for this is on MSDN . Alternatively you can use the IQueryAssociations..

How to Convert JSON object to Custom C# object?

http://stackoverflow.com/questions/2246694/how-to-convert-json-object-to-custom-c-sharp-object

way to use JSON in C# is with JSON.NET Quick Starts API Documentation from JSON.NET Official site help you work with it. An example..

Pros and Cons of using SqlCommand Prepare in C#?

http://stackoverflow.com/questions/2449827/pros-and-cons-of-using-sqlcommand-prepare-in-c

performance share improve this question From the MSDN Documentation Before you call Prepare specify the data type of each parameter..

Best Continuous Integration Setup for a solo developer (.NET) [closed]

http://stackoverflow.com/questions/264307/best-continuous-integration-setup-for-a-solo-developer-net

easy to setup and get it running. Check the Demos and Documentation . You will have it up and running in less than one hour share..

OAuth 2.0 Service Provider .NET libraries

http://stackoverflow.com/questions/3997172/oauth-2-0-service-provider-net-libraries

deserializing JSON to .net object using NewtonSoft (or linq to json maybe?)

http://stackoverflow.com/questions/4749639/deserializing-json-to-net-object-using-newtonsoft-or-linq-to-json-maybe

surprise you with missing object properties like Twitter. Documentation Serializing and Deserializing JSON with Json.NET and LINQ to..

Generating Documentation from C# XML Comments

http://stackoverflow.com/questions/48381/generating-documentation-from-c-sharp-xml-comments

Documentation from C# XML Comments I've recently started a new project and..

Best way to parse command line arguments in C#? [closed]

http://stackoverflow.com/questions/491595/best-way-to-parse-command-line-arguments-in-c

question I would strongly suggest using NDesk.Options Documentation and or Mono.Options same API different namespace . An example..

Unity 2.0 and handling IDisposable types (especially with PerThreadLifetimeManager)

http://stackoverflow.com/questions/5129789/unity-2-0-and-handling-idisposable-types-especially-with-perthreadlifetimemanag

the answer was dependent on used LifetimeManager class. Documentation says Unity uses specific types that inherit from the LifetimeManager..

Json.NET: Deserializing nested dictionaries

http://stackoverflow.com/questions/6416017/json-net-deserializing-nested-dictionaries

string object json new JsonConverter new MyConverter Documentation CustomCreationConverter with Json.NET share improve this answer..

Automatically update version number

http://stackoverflow.com/questions/650/automatically-update-version-number

also a good way. For more info see the Assembly Linker Documentation in the v tag. As for automatically incrementing numbers use..

Load local HTML file in a C# WebBrowser

http://stackoverflow.com/questions/7194851/load-local-html-file-in-a-c-sharp-webbrowser

folder. When I check it it is present when run bin Debug Documentation index.html However when I do the following I get a 'Page cannot.. the HTML file in the Webbrowser. webBrowser1.Navigate @ . Documentation index.html c# webbrowser control share improve this question..

What is your favorite use of Resharper? [closed]

http://stackoverflow.com/questions/76499/what-is-your-favorite-use-of-resharper

Extract Interface Extract Baseclass via Ctrl shift R Documentation Autocomplete Ctrl Shift Space Smart Code Complete Ctrl P Parameter..

Json.NET: convert JSON string to XML or XML to JSON string

http://stackoverflow.com/questions/814001/json-net-convert-json-string-to-xml-or-xml-to-json-string

doc XmlDocument JsonConvert.DeserializeXmlNode json Documentation here Converting between JSON and XML with Json.NET share improve..

How to get temporary folder for current user

http://stackoverflow.com/questions/944483/how-to-get-temporary-folder-for-current-user

me system temp folder path like C Windows TEMP . MSDN Documentation also says that above API returns current system's temporary..