Click here to Skip to main content
15,892,809 members
Home / Discussions / C#
   

C#

 
GeneralRe: Problem when convert 50MB string values to Stream... Pin
spalanivel7-Aug-09 2:46
spalanivel7-Aug-09 2:46 
GeneralTry this Pin
Ennis Ray Lynch, Jr.7-Aug-09 4:30
Ennis Ray Lynch, Jr.7-Aug-09 4:30 
GeneralRe: Problem when convert 50MB string values to Stream... Pin
harold aptroot7-Aug-09 5:23
harold aptroot7-Aug-09 5:23 
GeneralRe: Problem when convert 50MB string values to Stream... Pin
Ennis Ray Lynch, Jr.7-Aug-09 6:44
Ennis Ray Lynch, Jr.7-Aug-09 6:44 
GeneralRe: Problem when convert 50MB string values to Stream... Pin
harold aptroot7-Aug-09 6:59
harold aptroot7-Aug-09 6:59 
GeneralRe: Problem when convert 50MB string values to Stream... Pin
Ennis Ray Lynch, Jr.7-Aug-09 7:10
Ennis Ray Lynch, Jr.7-Aug-09 7:10 
GeneralRe: Problem when convert 50MB string values to Stream... Pin
harold aptroot7-Aug-09 7:26
harold aptroot7-Aug-09 7:26 
GeneralRe: Problem when convert 50MB string values to Stream... Pin
Ennis Ray Lynch, Jr.7-Aug-09 7:40
Ennis Ray Lynch, Jr.7-Aug-09 7:40 
Removing the loop removes the n, which does not seem logical except that Big Oh is not a measure of complexity and not running time.

for(int i=0;i<n;i++){
  SomeAction(i);
}

is O(n)
but
SomeAction(0);
SomeAction(1);
...
SomeAction(n-1);


is O(1)


Need custom software developed? I do custom programming based primarily on MS tools with an emphasis on C# development and consulting.

A man said to the universe:
"Sir I exist!"
"However," replied the universe,
"The fact has not created in me
A sense of obligation."
--Stephen Crane


GeneralRe: Problem when convert 50MB string values to Stream... Pin
harold aptroot7-Aug-09 8:10
harold aptroot7-Aug-09 8:10 
GeneralRe: Problem when convert 50MB string values to Stream... Pin
Ennis Ray Lynch, Jr.7-Aug-09 8:23
Ennis Ray Lynch, Jr.7-Aug-09 8:23 
GeneralRe: Problem when convert 50MB string values to Stream... Pin
harold aptroot7-Aug-09 8:42
harold aptroot7-Aug-09 8:42 
GeneralRe: Problem when convert 50MB string values to Stream... [modified] Pin
harold aptroot7-Aug-09 8:50
harold aptroot7-Aug-09 8:50 
GeneralRe: Problem when convert 50MB string values to Stream... Pin
Alaric_7-Aug-09 8:06
professionalAlaric_7-Aug-09 8:06 
AnswerRe: Problem when convert 50MB string values to Stream... Pin
Not Active7-Aug-09 2:54
mentorNot Active7-Aug-09 2:54 
AnswerRe: Problem when convert 50MB string values to Stream... Pin
Keith Barrow7-Aug-09 3:10
professionalKeith Barrow7-Aug-09 3:10 
AnswerRe: Problem when convert 50MB string values to Stream... Pin
stancrm7-Aug-09 3:12
stancrm7-Aug-09 3:12 
AnswerRe: Problem when convert 50MB string values to Stream... Pin
Luc Pattyn7-Aug-09 3:42
sitebuilderLuc Pattyn7-Aug-09 3:42 
QuestionOpen new tab that not exist Pin
tamir9017-Aug-09 1:43
tamir9017-Aug-09 1:43 
AnswerRe: Open new tab that not exist Pin
Arindam Sinha7-Aug-09 1:58
Arindam Sinha7-Aug-09 1:58 
GeneralRe: Open new tab that not exist Pin
tamir9017-Aug-09 2:04
tamir9017-Aug-09 2:04 
GeneralRe: Open new tab that not exist Pin
Arindam Sinha7-Aug-09 3:20
Arindam Sinha7-Aug-09 3:20 
AnswerRe: Open new tab that not exist Pin
Moreno Airoldi7-Aug-09 2:13
Moreno Airoldi7-Aug-09 2:13 
GeneralRe: Open new tab that not exist Pin
Luc Pattyn7-Aug-09 3:45
sitebuilderLuc Pattyn7-Aug-09 3:45 
GeneralRe: Open new tab that not exist Pin
Moreno Airoldi7-Aug-09 15:18
Moreno Airoldi7-Aug-09 15:18 
GeneralRe: Open new tab that not exist Pin
Luc Pattyn7-Aug-09 15:40
sitebuilderLuc Pattyn7-Aug-09 15:40 

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.