¡@

Home 

c# Programming Glossary: guide

How do I save/serialize a custom class to the settings file?

http://stackoverflow.com/questions/1321248/how-do-i-save-serialize-a-custom-class-to-the-settings-file

that it is possible but there doesn't appear to be a clear guide anywhere for me to follow. I understand that some serialization..

Convert Pixels to Points

http://stackoverflow.com/questions/139655/convert-pixels-to-points

I was thinking of is GetDeviceCaps. Microsoft has a guide called Developing DPI Aware Applications look for the section..

Are doubles faster than floats in c#?

http://stackoverflow.com/questions/158889/are-doubles-faster-than-floats-in-c

converted down to the precision requested. From Intel's guide to C Floating point Operations 1 sorry only have dead tree they..

Can a C# anonymous class implement an interface?

http://stackoverflow.com/questions/191013/can-a-c-sharp-anonymous-class-implement-an-interface

types cannot implement an Interface the C# programming guide says Anonymous types are class types that consist of one or..

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

than I ever could. And be sure to check out Jon Skeet's guide to implementing the singleton in C# update volatile causes reads..

C# little endian or big endian?

http://stackoverflow.com/questions/217980/c-sharp-little-endian-or-big-endian

equivalents for BinaryReader Writer. No online usage guide I'm afraid but they're trivial EndianBitConverter also has a..

Raise an event whenever a property's value changed?

http://stackoverflow.com/questions/2246777/raise-an-event-whenever-a-propertys-value-changed

events. I don't know how I should do it. Could you please guide me Thanks. c# .net events properties share improve this question..

Adding scripting functionality to .NET applications

http://stackoverflow.com/questions/260/adding-scripting-functionality-to-net-applications

. IronPython and IronRuby are both available today. For a guide to embedding IronPython read How to embed IronPython script..

Regex for numbers only

http://stackoverflow.com/questions/273141/regex-for-numbers-only

values for starters then see @tchrist 's comprehensive guide to parsing numbers with regular expressions . share improve..

List of new features in C#2.0, 3.0 and 4.0 [closed]

http://stackoverflow.com/questions/3174942/list-of-new-features-in-c2-0-3-0-and-4-0

the huge feature of dynamic typing. I've got a bluffers guide for C# 2 and another for C# 3 but I haven't done the equivalent..

How to Count Duplicates in List with LINQ

http://stackoverflow.com/questions/454601/how-to-count-duplicates-in-list-with-linq

one item against another. As I already wrote you need to guide compiler and provide some property that will be used in objects..

GetHashCode Guidelines in C#

http://stackoverflow.com/questions/462451/gethashcode-guidelines-in-c-sharp

cache the method return to enforce this. Is this a valid guideline I have tried a couple built in types in .NET and they didn't.. improve this question The answer is mostly it is a valid guideline but perhaps not a valid rule. It also doesn't tell the whole.. a couple of changes above I made a distinction between guideline and rule. I struck through for the lifetime of the object..

Merge msi and exe

http://stackoverflow.com/questions/535966/merge-msi-and-exe

or you can use IExpress coming with Windows. Here is a guide how to create a self extracting executable with IExpress . You..

All possible C# array initialization syntaxes

http://stackoverflow.com/questions/5678216/all-possible-c-sharp-array-initialization-syntaxes

searched the MSDN google it but there isn't an all in one guide. Edit I'm using .NET 3.5 c# c# arrays syntax array initialization..

What is the best way to parse (big) XML in C# Code?

http://stackoverflow.com/questions/676274/what-is-the-best-way-to-parse-big-xml-in-c-sharp-code

I haven't considered yet Like XLINQ or Please can anybody guide me Especially with regards to the memory efficiency of any given..

How to detect which .NET runtime is being used (MS vs. Mono)?

http://stackoverflow.com/questions/721161/how-to-detect-which-net-runtime-is-being-used-ms-vs-mono

Accessing Google Spreadsheets with C# using Google Data API

http://stackoverflow.com/questions/725627/accessing-google-spreadsheets-with-c-sharp-using-google-data-api

share improve this question According to the .NET user guide Download the .NET client library Add these using statements..

.Net (dotNet) wrappers for OpenCV?

http://stackoverflow.com/questions/85569/net-dotnet-wrappers-for-opencv

Web app blocked while processing another web app on sharing same session

http://stackoverflow.com/questions/9426673/web-app-blocked-while-processing-another-web-app-on-sharing-same-session

complete do the session will lock in SQLServer Please guide me to resolve this issue. c# asp.net session session state..

How to pass User Defined Table Type as Stored Procedured parameter in C#

http://stackoverflow.com/questions/1030848/how-to-pass-user-defined-table-type-as-stored-procedured-parameter-in-c-sharp

Checking for directory and file write permissions in .NET

http://stackoverflow.com/questions/1281620/checking-for-directory-and-file-write-permissions-in-net

wiki version offline at this time of The .NET Developers Guide to Windows Security . This is also discussed in reasonable detail..

C#: Oracle Data Type Equivalence with OracleDbType

http://stackoverflow.com/questions/1583150/c-oracle-data-type-equivalence-with-oracledbtype

in the documentation. Read the ODP for .NET Developer's Guide . With regards to choosing between Int16 Int32 and Int64 they..

C# how to add Excel Worksheet programatically Office XP / 2003

http://stackoverflow.com/questions/193092/c-sharp-how-to-add-excel-worksheet-programatically-office-xp-2003

COM Interop to Create an Excel Spreadsheet C# Programming Guide How to Add New Worksheets to Workbooks According to MSDN To..

What's the difference between anonymous methods (C# 2.0) and lambda expressions (C# 3.0)?

http://stackoverflow.com/questions/208381/whats-the-difference-between-anonymous-methods-c-2-0-and-lambda-expressions

lambda expressions see Lambda Expressions C# Programming Guide . And regarding lambda expressions A lambda expression is an..

Question about terminating a thread cleanly in .NET

http://stackoverflow.com/questions/3632149/question-about-terminating-a-thread-cleanly-in-net

reading How to Create and Terminate Threads C# Programming Guide from MSDN both which state an approach very much the same which..

Floating point comparison functions for C#

http://stackoverflow.com/questions/3874627/floating-point-comparison-functions-for-c-sharp

test suite. That's how I did it for The Floating Point Guide this is what I came up with in the end Java code should be easy..

can i use ADFS 2.0 to authenticate certain users against SQL Server

http://stackoverflow.com/questions/4313512/can-i-use-adfs-2-0-to-authenticate-certain-users-against-sql-server

A Reviewing AD FS Requirements from the AD FS 1.x Design Guide section Account store requirements says AD FS supports two types..

Style guide for c#?

http://stackoverflow.com/questions/4678178/style-guide-for-c

Here are links to the ones I am using... Microsoft Design Guidelines for Class Library Developers http msdn.microsoft.com en.. Files csharpcodingstandards.doc SubMain C# VB.NET Coding Guidelines http submain.com products guidelines.aspx Lance Hunt C#.. tutorials BestPractices.aspx Microsoft C# Programming Guide http msdn.microsoft.com en us library 67ef8sbd.aspx Phillips..

What does the bool? return type mean?

http://stackoverflow.com/questions/5064806/what-does-the-bool-return-type-mean

Multithreading reference?

http://stackoverflow.com/questions/601558/multithreading-reference

Messages Thread Synchronization C# Programming Guide How to synchronize access to a shared resource in a multithreading.. STA MTA C# Threading Thread Synchronization C# Programming Guide Overview of concurrency in .NET Framework 3.5 Multi threading.. and suggestions Oracle Multithreaded Programming Guide Multithreading Tutorial 64 Bit Programming with Visual C How..

How to detect which .NET runtime is being used (MS vs. Mono)?

http://stackoverflow.com/questions/721161/how-to-detect-which-net-runtime-is-being-used-ms-vs-mono

share improve this question From the Mono Project's Guide to Porting Winforms Applications public static bool IsRunningOnMono..

Is there any definitive documentation on writing software installers?

http://stackoverflow.com/questions/923384/is-there-any-definitive-documentation-on-writing-software-installers

question Update since my original post WiX A Developers Guide to Windows Installer XML has been released and is also a good.. myself though. I still suggest reading The Definitive Guide to Windows Installer as a starting point. Windows Installer.. take a few months. Go pick up a copy of The Definitive Guide to Windows Installer . I've lost count of how many times I've..

When Should a .NET Class Override Equals()? When Should it Not?

http://stackoverflow.com/questions/9709088/when-should-a-net-class-override-equals-when-should-it-not

Equals When Should it Not The VS2005 documentation Guidelines for Overloading Equals and Operator C# Programming Guide.. for Overloading Equals and Operator C# Programming Guide states in part Overriding operator in non immutable types is.. not recommended. The newer .NET Framework 4 documentation Guidelines for Implementing Equals and the Equality Operator omits..

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