Click here to Skip to main content
15,893,190 members
Home / Discussions / C#
   

C#

 
AnswerRe: c# Pin
OriginalGriff5-Feb-10 23:32
mveOriginalGriff5-Feb-10 23:32 
AnswerRe: c# Pin
mdrizwan_15-Feb-10 23:33
mdrizwan_15-Feb-10 23:33 
AnswerRe: c# Pin
Mycroft Holmes6-Feb-10 0:06
professionalMycroft Holmes6-Feb-10 0:06 
AnswerRe: c# Pin
Md. Marufuzzaman6-Feb-10 0:33
professionalMd. Marufuzzaman6-Feb-10 0:33 
AnswerRe: c# Pin
#realJSOP6-Feb-10 2:03
mve#realJSOP6-Feb-10 2:03 
AnswerRe: c# Pin
Brij6-Feb-10 7:16
mentorBrij6-Feb-10 7:16 
Questionfunction c# Pin
bahar35-Feb-10 23:05
bahar35-Feb-10 23:05 
AnswerRe: function c# Pin
OriginalGriff5-Feb-10 23:16
mveOriginalGriff5-Feb-10 23:16 
AnswerRe: function c# Pin
Md. Marufuzzaman6-Feb-10 0:38
professionalMd. Marufuzzaman6-Feb-10 0:38 
AnswerRe: function c# Pin
Luc Pattyn6-Feb-10 1:51
sitebuilderLuc Pattyn6-Feb-10 1:51 
AnswerRe: function c# Pin
loyal ginger6-Feb-10 2:52
loyal ginger6-Feb-10 2:52 
GeneralRe: function c# Pin
OriginalGriff6-Feb-10 3:47
mveOriginalGriff6-Feb-10 3:47 
GeneralRe: function c# Pin
loyal ginger6-Feb-10 9:58
loyal ginger6-Feb-10 9:58 
QuestionDo I need to Stop investing on C# just because F# is there ? Pin
Nadia Monalisa5-Feb-10 22:48
Nadia Monalisa5-Feb-10 22:48 
AnswerRe: Do I need to Stop investing on C# just because F# is there ? Pin
Eddy Vluggen5-Feb-10 23:16
professionalEddy Vluggen5-Feb-10 23:16 
AnswerRe: Do I need to Stop investing on C# just because F# is there ? Pin
Md. Marufuzzaman6-Feb-10 1:04
professionalMd. Marufuzzaman6-Feb-10 1:04 
AnswerRe: Do I need to Stop investing on C# just because F# is there ? Pin
darkelv6-Feb-10 3:46
darkelv6-Feb-10 3:46 
AnswerRe: Do I need to Stop investing on C# just because F# is there ? Pin
Dave Doknjas6-Feb-10 12:58
Dave Doknjas6-Feb-10 12:58 
Questionclose all opened windows Pin
MathewPV5-Feb-10 21:44
MathewPV5-Feb-10 21:44 
AnswerRe: close all opened windows Pin
OriginalGriff5-Feb-10 22:34
mveOriginalGriff5-Feb-10 22:34 
AnswerRe: close all opened windows Pin
Luc Pattyn6-Feb-10 1:54
sitebuilderLuc Pattyn6-Feb-10 1:54 
GeneralRe: close all opened windows Pin
MathewPV7-Feb-10 16:47
MathewPV7-Feb-10 16:47 
AnswerRe: close all opened windows Pin
Luc Pattyn7-Feb-10 16:51
sitebuilderLuc Pattyn7-Feb-10 16:51 
AnswerRe: close all opened windows Pin
Member 43497939-Feb-10 23:50
Member 43497939-Feb-10 23:50 
QuestionHow to replace string with StringBuilder Pin
Aseem Sharma5-Feb-10 20:58
Aseem Sharma5-Feb-10 20:58 
Hi,

In my application I am very much using the System.string class for every manipulation of characters (Reading a lot of data from a XML file, writing a lot of data in a XML file and creating log for each operation). If my application needs to run for 24 hours, I know how inefficient it can be using System.string. Cry | :(( How can I replace System.string with StringBuilder? Like in System.Xml.XmlElement object, its inner member InnerText is itself a System.string object. Similarly in System.Xml.XmlNode object, its inner member InnerText is also a System.string object. So when too many classes of .net framework are using System.string type for their members (instead of StringBuilder), how can I replace System.string with StringBuilder?

I am not getting any clue to come out of this problem. Even if I use StringBuilder, too many .net classes do not accept it. Using System.string or StringBuilder.ToString() can make my application really inefficient. Please help me to know how to go about it? Also let me know when System.string get collected by Garbage Collector?

Thanks in Advance
Aseem

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.