0
votes
4answers
136 views
What isthe best way to write a C# application “kill switch”?
I need to write a "kill switch" into my C# application for licensing/billing purposes. What is the best way to do that?
The requirements are as follows (its actually 2 kill switch …
2
votes
4answers
137 views
Switch Statement with Strings C#
I need to write something that will get the start-up arguments and then do something for those start-up args, and I was thinking that switch would be good but it only accepts for i …
8
votes
12answers
736 views
How to break out of a loop from inside a switch?
Hi,
I'm writing some code that looks like this:
while(true) {
switch(msg->state) {
case MSGTYPE: // ...
break;
// ... more stuff ...
case DONE:
…
4
votes
8answers
264 views
Why doesn’t C# switch statement allow using typeof/GetType() ?
As in this example:
switch ( myObj.GetType ( ) )
{
case typeof(MyObject):
Console.WriteLine ( "MyObject is here" );
break;
}
5
votes
11answers
284 views
C# switch statement
Should I throw NotImplementedException() on default: if I have cases for all possible enum types?
3
votes
5answers
123 views
Performance difference in alternative switches in Python.
I have read a few articles around alternatives to the switch statement in Python. Mainly using dicts instead of lots of if's and elif's. However none really answer the question: is …
0
votes
1answer
161 views
C++ Program wont quit, using switch case
I'm writing a tic tac toe program that plays throuh the terminal/console
After Player 1 or 2 wins, I give the choice for the user to play again, 1 = play again, 2 to quit.
However, …
1
vote
6answers
164 views
Is this a bad pattern? (Switch inside for/foreach loop)
I find myself writing code such as:
foreach($array as $key => $value) {
switch($key) {
case 'something':
doSomething($value);
break;
…
0
votes
2answers
80 views
iPhone Switch views _KILL ! Problem
hi guys ...
i have a problem with switch view between 2 views with nib files !
here my code .
my first page goes to page 2 ! but at page 2 i cant back to first page ! my app go out …
1
vote
9answers
176 views
need to create a summary of a large switch statement in C#
Alright, i dont know how to explain it well.. but i have a switch statement,
string mystring = "hello";
switch(mystring)
{
case "hello":
break;
case "goodbye":
break;
case "exampl …
2
votes
2answers
99 views
Proper perl switch formatting in emacs
Edit: After reading the responses, I believe the answer is "don't do this", hence I marked an appropriate response as the official answer.
Is there an easy way to get emacs to dis …
1
vote
2answers
125 views
Switch Programming Language
I've forgotten how to switch programming languages in Visual Studio 2008. I need to switch from C++ to C#. Help!
0
votes
5answers
93 views
When IF is best over Switch or vice versa [closed]
Possible Duplicate:
If/Else vs. Switch
Hi All,
I want to know when if statement is good over switch or vice versa.....
4
votes
5answers
442 views
Why do I need to use break?
I was wondering why C# requires me to use break in a switch statement although a fall-through semantics is by definition not allowed. hence, the compiler could generate the break a …
1
vote
2answers
68 views
iPhone app switching
Is it possible to run an iPhone app from your own app?
For example when you press a button in your app, the iPhone switches to another app.
If so, how would you do this?
