Click here to Skip to main content
15,886,963 members
Home / Discussions / C#
   

C#

 
GeneralRe: 3 Dimensional Array C# Pin
PIEBALDconsult10-Jan-15 7:10
mvePIEBALDconsult10-Jan-15 7:10 
QuestionRegistryKey showing Object reference not set to an instance of an object Pin
Jassim Rahma9-Jan-15 10:06
Jassim Rahma9-Jan-15 10:06 
AnswerRe: RegistryKey showing Object reference not set to an instance of an object Pin
Jassim Rahma9-Jan-15 11:50
Jassim Rahma9-Jan-15 11:50 
QuestionPlay a video Pin
AlecJames9-Jan-15 8:50
AlecJames9-Jan-15 8:50 
QuestionHaving issues with a action looping Pin
Member 113620598-Jan-15 7:12
Member 113620598-Jan-15 7:12 
AnswerRe: Having issues with a action looping Pin
Pete O'Hanlon8-Jan-15 7:26
mvePete O'Hanlon8-Jan-15 7:26 
GeneralRe: Having issues with a action looping Pin
Member 113620598-Jan-15 7:48
Member 113620598-Jan-15 7:48 
GeneralRe: Having issues with a action looping Pin
Pete O'Hanlon8-Jan-15 9:11
mvePete O'Hanlon8-Jan-15 9:11 
No, break is a keyword that is required in a switch statement to say that a particular piece of code has "finished". It doesn't reset any variables. Let me demonstrate with a simple example:
C#
bool finished;
int i = 0;
while (!finished)
{
  switch (i)
  {
    case 0:
      Console.WriteLine("Loopy");
      break;
    case 1:
      finished = true;
      break;
  }
}
As you can see, this will never finish because i is never set to 1.
GeneralRe: Having issues with a action looping Pin
Member 113620598-Jan-15 9:49
Member 113620598-Jan-15 9:49 
AnswerRe: Having issues with a action looping Pin
BillWoodruff8-Jan-15 8:37
professionalBillWoodruff8-Jan-15 8:37 
GeneralRe: Having issues with a action looping Pin
Member 113620598-Jan-15 9:50
Member 113620598-Jan-15 9:50 
QuestionConvert from Base 64 to hexadecimal value Pin
NJdotnetdev8-Jan-15 7:10
NJdotnetdev8-Jan-15 7:10 
AnswerRe: Convert from Base 64 to hexadecimal value Pin
SledgeHammer018-Jan-15 7:25
SledgeHammer018-Jan-15 7:25 
GeneralRe: Convert from Base 64 to hexadecimal value Pin
NJdotnetdev8-Jan-15 7:32
NJdotnetdev8-Jan-15 7:32 
AnswerRe: Convert from Base 64 to hexadecimal value Pin
PIEBALDconsult8-Jan-15 7:32
mvePIEBALDconsult8-Jan-15 7:32 
GeneralRe: Convert from Base 64 to hexadecimal value Pin
NJdotnetdev8-Jan-15 7:34
NJdotnetdev8-Jan-15 7:34 
GeneralRe: Convert from Base 64 to hexadecimal value Pin
PIEBALDconsult8-Jan-15 7:42
mvePIEBALDconsult8-Jan-15 7:42 
GeneralRe: Convert from Base 64 to hexadecimal value Pin
NJdotnetdev13-Jan-15 8:48
NJdotnetdev13-Jan-15 8:48 
Questionusing sData in C# to post sales Pin
Jassim Rahma7-Jan-15 20:33
Jassim Rahma7-Jan-15 20:33 
AnswerRe: using sData in C# to post sales Pin
Mycroft Holmes7-Jan-15 21:02
professionalMycroft Holmes7-Jan-15 21:02 
AnswerRe: using sData in C# to post sales Pin
Richard MacCutchan7-Jan-15 22:51
mveRichard MacCutchan7-Jan-15 22:51 
QuestionABOUT C# PROJECT Pin
bhulku Swati7-Jan-15 16:33
bhulku Swati7-Jan-15 16:33 
AnswerRe: ABOUT C# PROJECT Pin
BillWoodruff7-Jan-15 16:55
professionalBillWoodruff7-Jan-15 16:55 
AnswerRe: ABOUT C# PROJECT Pin
Pete O'Hanlon7-Jan-15 20:29
mvePete O'Hanlon7-Jan-15 20:29 
AnswerRe: ABOUT C# PROJECT Pin
Swinkaran8-Jan-15 10:12
professionalSwinkaran8-Jan-15 10:12 

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.