Click here to Skip to main content
15,890,185 members
Home / Discussions / C#
   

C#

 
AnswerRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
Thomas Krojer16-Jun-09 21:32
Thomas Krojer16-Jun-09 21:32 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
Mirko198016-Jun-09 21:43
Mirko198016-Jun-09 21:43 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
radhikasharma16-Jun-09 22:08
radhikasharma16-Jun-09 22:08 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
radhikasharma16-Jun-09 22:06
radhikasharma16-Jun-09 22:06 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
Thomas Krojer16-Jun-09 22:13
Thomas Krojer16-Jun-09 22:13 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
radhikasharma17-Jun-09 0:21
radhikasharma17-Jun-09 0:21 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
DaveyM6917-Jun-09 0:37
professionalDaveyM6917-Jun-09 0:37 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
OriginalGriff16-Jun-09 22:39
mveOriginalGriff16-Jun-09 22:39 
To elaborate on what Thomas said: take a look at your code:
Label_0104:
foreach (Character character in this.charSet) ///Error of stack overflow execption in Charset//
   {
   foreach (CharClass class2 in classArray)
      {
      if (character.type == class2)
         {
         num17++;
         goto Label_0104;
         }
      }
   }

So, you enter the first loop, enter the second, then when you find a match with class2, you go back to before the first loop and enter again.
How are you ever going to to get out of the loop? No wonder you run out of memory first!

No trees were harmed in the sending of this message; however, a significant number of electrons were slightly inconvenienced.

This message is made of fully recyclable Zeros and Ones

AnswerRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
DaveyM6916-Jun-09 22:50
professionalDaveyM6916-Jun-09 22:50 
AnswerRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
Alan N17-Jun-09 0:05
Alan N17-Jun-09 0:05 
JokeRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
akyriako7817-Jun-09 3:34
akyriako7817-Jun-09 3:34 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
radhikasharma17-Jun-09 3:50
radhikasharma17-Jun-09 3:50 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
akyriako7817-Jun-09 3:54
akyriako7817-Jun-09 3:54 
JokeReminds me of an Aggie Joke Pin
Andrew Rissing17-Jun-09 4:07
Andrew Rissing17-Jun-09 4:07 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
radhikasharma17-Jun-09 4:35
radhikasharma17-Jun-09 4:35 
AnswerRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
Lutosław17-Jun-09 8:37
Lutosław17-Jun-09 8:37 
AnswerRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
Jeremy Tierman18-Jun-09 5:08
Jeremy Tierman18-Jun-09 5:08 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
Edw19-Jun-09 13:06
Edw19-Jun-09 13:06 
AnswerRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
johannesnestler1-Jul-09 5:32
johannesnestler1-Jul-09 5:32 
QuestionItem collection cannot be modified when datasource property is set Pin
Rahul DSG16-Jun-09 21:05
Rahul DSG16-Jun-09 21:05 
AnswerRe: Item collection cannot be modified when datasource property is set Pin
himanshu256116-Jun-09 21:34
himanshu256116-Jun-09 21:34 
AnswerRe: Item collection cannot be modified when datasource property is set Pin
Morteza Karimian Kelishadrokhi29-Jul-11 3:45
Morteza Karimian Kelishadrokhi29-Jul-11 3:45 
AnswerRe: Item collection cannot be modified when datasource property is set Pin
Morteza Karimian Kelishadrokhi29-Jul-11 8:41
Morteza Karimian Kelishadrokhi29-Jul-11 8:41 
QuestionExport to Excel in not working Pin
binod kumar16-Jun-09 20:48
binod kumar16-Jun-09 20:48 
AnswerRe: Export to Excel in not working Pin
Ashfield16-Jun-09 20:52
Ashfield16-Jun-09 20:52 

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.