Click here to Skip to main content
15,897,090 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: String concat slow despite Stringbuilder Pin
frylord28-Jul-08 6:52
frylord28-Jul-08 6:52 
GeneralRe: String concat slow despite Stringbuilder Pin
Luc Pattyn28-Jul-08 7:07
sitebuilderLuc Pattyn28-Jul-08 7:07 
AnswerRe: String concat slow despite Stringbuilder Pin
Luc Pattyn28-Jul-08 6:11
sitebuilderLuc Pattyn28-Jul-08 6:11 
GeneralRe: String concat slow despite Stringbuilder Pin
frylord28-Jul-08 6:27
frylord28-Jul-08 6:27 
GeneralRe: String concat slow despite Stringbuilder Pin
Luc Pattyn28-Jul-08 6:43
sitebuilderLuc Pattyn28-Jul-08 6:43 
GeneralRe: String concat slow despite Stringbuilder Pin
frylord28-Jul-08 7:02
frylord28-Jul-08 7:02 
GeneralRe: String concat slow despite Stringbuilder Pin
Luc Pattyn28-Jul-08 7:10
sitebuilderLuc Pattyn28-Jul-08 7:10 
GeneralRe: String concat slow despite Stringbuilder Pin
frylord28-Jul-08 7:25
frylord28-Jul-08 7:25 
Using this code:

        Dim Rnd As Random = New Random()<br />
        Dim Dbl_RndData(65535) As Double<br />
        Dim Str_RndData As StringBuilder<br />
        Dim i As Integer = 0<br />
        Dim StpWtch As Stopwatch = New Stopwatch<br />
<br />
<br />
        Str_RndData = New StringBuilder()<br />
<br />
        ' Fill the Double array with random data<br />
        For i = 0 To 65535<br />
            Dbl_RndData(i) = Rnd.NextDouble<br />
        Next<br />
<br />
        StpWtch.Start()<br />
        ' Convert the data to a string using stringbuilder<br />
        For i = 0 To 65535<br />
            Str_RndData.Append(Dbl_RndData(i).ToString("0.0000"))<br />
            Str_RndData.Append(", ") ' Append a comma to get CSV format<br />
        Next<br />
        StpWtch.Done()<br />
<br />
        TextBox1.Text = StpWtch.ElapsedTime.ToString


And this Stopwatch counter:
http://www.codeproject.com/KB/vb/vbnetstopwatch.aspx[^]

I get 0.196240863014713 seconds
QuestionList Box item coloring Pin
Saam_cse28-Jul-08 1:02
Saam_cse28-Jul-08 1:02 
AnswerRe: List Box item coloring Pin
Luc Pattyn28-Jul-08 1:14
sitebuilderLuc Pattyn28-Jul-08 1:14 
GeneralMenustrip & Selection Pin
Member 425919228-Jul-08 0:19
Member 425919228-Jul-08 0:19 
GeneralRe: Menustrip & Selection Pin
Thomas Stockwell29-Jul-08 9:06
professionalThomas Stockwell29-Jul-08 9:06 
QuestionCreate an excel 2003 add in with vb2008 Pin
JR21227-Jul-08 22:32
JR21227-Jul-08 22:32 
AnswerRe: Create an excel 2003 add in with vb2008 Pin
John_Adams28-Jul-08 8:56
John_Adams28-Jul-08 8:56 
AnswerRe: Create an excel 2003 add in with vb2008 Pin
rprateek6-Aug-08 19:11
rprateek6-Aug-08 19:11 
QuestionSelect the sender in outlook mail Pin
~Khatri Mitesh~27-Jul-08 21:29
~Khatri Mitesh~27-Jul-08 21:29 
QuestionPositioning the image in Excel 2007 [modified] Pin
klaydze27-Jul-08 21:06
klaydze27-Jul-08 21:06 
QuestionThere are not enough concurrent access licenses to log you on. [Crystal report] Pin
AJAYWVK8727-Jul-08 20:44
AJAYWVK8727-Jul-08 20:44 
AnswerRe: There are not enough concurrent access licenses to log you on. [Crystal report] Pin
Christian Graus27-Jul-08 21:17
protectorChristian Graus27-Jul-08 21:17 
GeneralRe: There are not enough concurrent access licenses to log you on. [Crystal report] Pin
Duncan Edwards Jones27-Jul-08 23:59
professionalDuncan Edwards Jones27-Jul-08 23:59 
GeneralRe: There are not enough concurrent access licenses to log you on. [Crystal report] Pin
AJAYWVK8728-Jul-08 22:55
AJAYWVK8728-Jul-08 22:55 
AnswerRe: There are not enough concurrent access licenses to log you on. [Crystal report] Pin
DJ Matthews28-Jul-08 9:11
DJ Matthews28-Jul-08 9:11 
GeneralRe: There are not enough concurrent access licenses to log you on. [Crystal report] Pin
AJAYWVK8729-Jul-08 0:24
AJAYWVK8729-Jul-08 0:24 
Questionharddisk space.. Pin
Subjugate27-Jul-08 20:39
Subjugate27-Jul-08 20:39 
AnswerRe: harddisk space.. Pin
Ajay.k_Singh27-Jul-08 21:05
Ajay.k_Singh27-Jul-08 21:05 

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.