Click here to Skip to main content
15,887,336 members
Home / Discussions / C#
   

C#

 
AnswerRe: use a Datagridviwcomboboxcell in a binded datagridview Pin
dan!sh 26-Dec-09 18:08
professional dan!sh 26-Dec-09 18:08 
GeneralRe: use a Datagridviwcomboboxcell in a binded datagridview Pin
baranils26-Dec-09 22:23
baranils26-Dec-09 22:23 
GeneralRe: use a Datagridviwcomboboxcell in a binded datagridview Pin
dan!sh 26-Dec-09 23:07
professional dan!sh 26-Dec-09 23:07 
GeneralRe: use a Datagridviwcomboboxcell in a binded datagridview Pin
baranils27-Dec-09 2:42
baranils27-Dec-09 2:42 
GeneralRe: use a Datagridviwcomboboxcell in a binded datagridview Pin
baranils27-Dec-09 10:13
baranils27-Dec-09 10:13 
QuestionA simple question regarding String Pin
uusheikh26-Dec-09 5:40
uusheikh26-Dec-09 5:40 
AnswerRe: A simple question regarding String Pin
Eddy Vluggen26-Dec-09 6:00
professionalEddy Vluggen26-Dec-09 6:00 
GeneralRe: A simple question regarding String Pin
Ben Fair28-Dec-09 2:52
Ben Fair28-Dec-09 2:52 
Yes, Microsoft purposely made the String type act like a value type, even though it is really a reference type; it is immutable. Any operations on a String produce a copy, or a partial copy, of the String; the underlying string data cannot be directly changed. This is why you have to do a = a.ToUpper(); in the first place, rather than the ToUpper() method directly changing the String. This is also the reason that the StringBuilder class exists, because it allows string manipulation without the extra copying, and thus has better performance in situations where lots of string manipulation will be happening.
AnswerRe: A simple question regarding String Pin
harold aptroot26-Dec-09 6:21
harold aptroot26-Dec-09 6:21 
GeneralRe: A simple question regarding String Pin
uusheikh26-Dec-09 23:01
uusheikh26-Dec-09 23:01 
QuestionCustom item list Pin
Zaegra26-Dec-09 2:32
Zaegra26-Dec-09 2:32 
AnswerRe: Custom item list Pin
Abhinav S26-Dec-09 2:36
Abhinav S26-Dec-09 2:36 
AnswerRe: Custom item list Pin
Jimmanuel26-Dec-09 2:40
Jimmanuel26-Dec-09 2:40 
AnswerRe: Custom item list Pin
Luc Pattyn26-Dec-09 3:02
sitebuilderLuc Pattyn26-Dec-09 3:02 
GeneralRe: Custom item list Pin
Zaegra26-Dec-09 3:18
Zaegra26-Dec-09 3:18 
QuestionDelete Drawed Shape Pin
dataminers25-Dec-09 23:34
dataminers25-Dec-09 23:34 
AnswerRe: Delete Drawed Shape Pin
Luc Pattyn26-Dec-09 1:47
sitebuilderLuc Pattyn26-Dec-09 1:47 
GeneralRe: Delete Drawed Shape Pin
dataminers29-Dec-09 22:38
dataminers29-Dec-09 22:38 
GeneralRe: Delete Drawed Shape Pin
Luc Pattyn30-Dec-09 0:33
sitebuilderLuc Pattyn30-Dec-09 0:33 
Questionunsafe Pin
sanforjackass25-Dec-09 22:38
sanforjackass25-Dec-09 22:38 
AnswerRe: unsafe Pin
dan!sh 25-Dec-09 22:44
professional dan!sh 25-Dec-09 22:44 
GeneralRe: unsafe Pin
sanforjackass25-Dec-09 22:53
sanforjackass25-Dec-09 22:53 
GeneralRe: unsafe Pin
dan!sh 25-Dec-09 23:00
professional dan!sh 25-Dec-09 23:00 
GeneralRe: unsafe Pin
sanforjackass25-Dec-09 23:44
sanforjackass25-Dec-09 23:44 
Questiontypes formats in app.config Pin
Hussam Fattahi25-Dec-09 22:21
Hussam Fattahi25-Dec-09 22:21 

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.