Click here to Skip to main content
15,911,142 members
Home / Discussions / C#
   

C#

 
AnswerRe: How long the project "windows registry editor" may take to complete? Pin
Dave Kreskowiak13-Mar-09 4:10
mveDave Kreskowiak13-Mar-09 4:10 
AnswerRe: How long the project "windows registry editor" may take to complete? Pin
Pete O'Hanlon13-Mar-09 4:42
mvePete O'Hanlon13-Mar-09 4:42 
GeneralRe: How long the project "windows registry editor" may take to complete? Pin
Nagy Vilmos13-Mar-09 5:11
professionalNagy Vilmos13-Mar-09 5:11 
GeneralRe: How long the project "windows registry editor" may take to complete? Pin
0x3c013-Mar-09 7:48
0x3c013-Mar-09 7:48 
QuestionConvert a Word file to pdf with microsoft office 2007 Pin
abbd13-Mar-09 2:02
abbd13-Mar-09 2:02 
AnswerRe: Convert a Word file to pdf with microsoft office 2007 Pin
Xmen Real 13-Mar-09 2:12
professional Xmen Real 13-Mar-09 2:12 
QuestionLoad font from a ttf file ! Pin
Mohammad Dayyan13-Mar-09 1:51
Mohammad Dayyan13-Mar-09 1:51 
AnswerRe: Load font from a ttf file ! Pin
Xmen Real 13-Mar-09 2:15
professional Xmen Real 13-Mar-09 2:15 
GeneralRe: Load font from a ttf file ! Pin
Mohammad Dayyan13-Mar-09 2:44
Mohammad Dayyan13-Mar-09 2:44 
QuestionHow to get file properties in Windows 7? Pin
psi_u13-Mar-09 0:53
psi_u13-Mar-09 0:53 
QuestionSync confusion Pin
J-Cop13-Mar-09 0:23
J-Cop13-Mar-09 0:23 
AnswerRe: Sync confusion Pin
Bharat Jain13-Mar-09 2:50
Bharat Jain13-Mar-09 2:50 
GeneralRe: Sync confusion Pin
J-Cop13-Mar-09 3:01
J-Cop13-Mar-09 3:01 
GeneralRe: Sync confusion Pin
Bharat Jain13-Mar-09 3:30
Bharat Jain13-Mar-09 3:30 
AnswerRe: Sync confusion Pin
Luc Pattyn13-Mar-09 2:56
sitebuilderLuc Pattyn13-Mar-09 2:56 
QuestionFrame CheckSum Calculation Problem Pin
ajorge200813-Mar-09 0:01
ajorge200813-Mar-09 0:01 
AnswerRe: Frame CheckSum Calculation Problem [modified] Pin
DaveyM6913-Mar-09 0:14
professionalDaveyM6913-Mar-09 0:14 
QuestionRegular expressions in C# Pin
KeithF12-Mar-09 23:28
KeithF12-Mar-09 23:28 
AnswerRe: Regular expressions in C# Pin
whaka12-Mar-09 23:48
whaka12-Mar-09 23:48 
AnswerRe: Regular expressions in C# Pin
psi_u13-Mar-09 1:05
psi_u13-Mar-09 1:05 
AnswerRe: Regular expressions in C# Pin
#realJSOP13-Mar-09 2:26
professional#realJSOP13-Mar-09 2:26 
Questionstring reference type? Pin
__DukeNukem__12-Mar-09 23:25
__DukeNukem__12-Mar-09 23:25 
AnswerRe: string reference type? Pin
DaveyM6912-Mar-09 23:37
professionalDaveyM6912-Mar-09 23:37 
GeneralRe: string reference type? Pin
__DukeNukem__12-Mar-09 23:45
__DukeNukem__12-Mar-09 23:45 
GeneralRe: string reference type? Pin
DaveyM6912-Mar-09 23:59
professionalDaveyM6912-Mar-09 23:59 
No problem Big Grin | :-D

We've all been there at some point on this one!

There are reasons why the string class is like this - a reference type that behaves like a value type. Research it if you're interested, but it's down to the fact that a string isn't really a string, it's a null terminated char array - i.e. each character is stored in ajacent memory locations with a null character at the end to dertermine where the string finishes.

It is possible to create a mutable string by using 'unsafe', 'fixed' and pointers to manipulte the contents of the array in memory but it's not advised.

Dave
BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)
Visual Basic is not used by normal people so we're not covering it here. (Uncyclopedia)

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.