¡@

Home 

c# Programming Glossary: built

Displaying the build date

http://stackoverflow.com/questions/1600962/displaying-the-build-date

The plan is to put the build date there instead So App built on 21 10 2009 for example. I'm struggling to find a programmatic..

Simple 2 way encryption for C#

http://stackoverflow.com/questions/165808/simple-2-way-encryption-for-c-sharp

time to be more friendly for web applications e g. I've built Encrypt Decrypt methods that work with URL friendly string ...

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

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

StackOverflow for another example of a real world app built entirely with Redis. Sample code showing a complete CRUD app..

Using CookieContainer with WebClient class

http://stackoverflow.com/questions/1777221/using-cookiecontainer-with-webclient-class

it with a WebClient. As far as I understand there is no built in method like there is for HttpWebRequests request.CookieContainer..

What 'additional configuration' is necessary to reference a .NET 2.0 mixed mode assembly in a .NET 4.0 project?

http://stackoverflow.com/questions/2455654/what-additional-configuration-is-necessary-to-reference-a-net-2-0-mixed-mode

referencing the 2.X assembly I get Mixed mode assembly is built against version 'v2.0.50727' of the runtime and cannot be loaded..

Natural Sort Order in C#

http://stackoverflow.com/questions/248603/natural-sort-order-in-c-sharp

question The easiest thing to do is just P Invoke the built in function in Windows and use it as the comparison function..

Using AES encryption in C#

http://stackoverflow.com/questions/273452/using-aes-encryption-in-c-sharp

en us magazine cc164846.aspx If you just want to use the built in crypto provider RijndaelManaged check out the following help..

Deserialize JSON into C# dynamic object?

http://stackoverflow.com/questions/3142495/deserialize-json-into-c-sharp-dynamic-object

assembly then as Vlad points out you can use the built in methods of the Json class. It is included with the MVC framework..

Convert hex string to byte array [duplicate]

http://stackoverflow.com/questions/321370/convert-hex-string-to-byte-array

in C# Can we convert a hex string to a byte array using a built in function in C# or do I have to make a custom method for this..

Is there a string math evaluator in .NET?

http://stackoverflow.com/questions/355062/is-there-a-string-math-evaluator-in-net

a valid math expression such as String s 1 2 7 Is there a built in library function in .NET that will parse and evaluate that..

Performance differences between debug and release builds

http://stackoverflow.com/questions/4043821/performance-differences-between-debug-and-release-builds

on a curly brace. The big one is the optimizer that's built into the JIT compiler. I know it makes the following optimizations..

DateTime vs DateTimeOffset

http://stackoverflow.com/questions/4331189/datetime-vs-datetimeoffset

separately. There is a one way implicit conversion built in to the .Net framework that lets you pass a DateTime into..

How to read a text file reversely with iterator in C#

http://stackoverflow.com/questions/452902/how-to-read-a-text-file-reversely-with-iterator-in-c-sharp

of a character or not when you fetch data. There's nothing built into the framework and I suspect you'd have to do separate hard..

How to elevate privileges only when required?

http://stackoverflow.com/questions/573086/how-to-elevate-privileges-only-when-required

possible to elevate the currently running process. It is built into Windows Vista that administrator privileges are given to..

C# DLL config file

http://stackoverflow.com/questions/594298/c-sharp-dll-config-file

The .NET configuration mechanism has a lot of features built into it to facilitate easy upgrading updating of the app and..

byte[] to hex string

http://stackoverflow.com/questions/623104/byte-to-hex-string

c# string hex share improve this question There is a built in method for this byte data 1 2 4 8 16 32 string hex BitConverter.ToString..

Read MS Exchange email in C#

http://stackoverflow.com/questions/652549/read-ms-exchange-email-in-c-sharp

WebDAV support but WebDAV is complicated .NET has poor built in support for it and to add insult to injury Exchange 2007..

Accessing a Shared File (UNC) From a Remote, Non-Trusted Domain With Credentials

http://stackoverflow.com/questions/659013/accessing-a-shared-file-unc-from-a-remote-non-trusted-domain-with-credentials

The best way is probably through the administrative built in shares. Example computername c program files Folder file.txt..

Accessing Imap in C# [closed]

http://stackoverflow.com/questions/670183/accessing-imap-in-c-sharp

Imap in C# closed Is there a built in method to access an Imap server with SSL in C# or is there..

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

this you need to analyse the JSON and there is no built in way to do this using the Create method. I found a discussion..