0
votes
3answers
61 views
The old switcheroo (switch position in file)
Hi All,
I would really appreciate if somebody could help me/offer advice on this.
I have a file, probably about 50000 lines long, these files are generated on a weekly basis. each line is identical …
0
votes
1answer
28 views
How to relocate copied svn folder
Hey all,
i copied an existing svn folder (a) to a new folder b and want to also switch the repository url. Its still pointing to a repo.
i try svn switch --relocate but only get:
svn: Relocate can …
4
votes
5answers
472 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 at the end of each …
3
votes
9answers
196 views
C# Switch Statement refactoring
The purpose of the code below is to determine if a particular date qualifies as a "weekend" i.e after 12:00 PM on Thursday, minimum 2 days and before Monday 12:00 PM
Is there a better way? If-Else …
2
votes
11answers
273 views
Code smell in this switch statement?
I'm wondering where a switch statement of this style should be changed to an if else statement.
switch (foo) // foo is an enumerated type
{
case barOne:
if (blahOne)
{
…
1
vote
3answers
89 views
C# switch/break
It appears I need to use a break in each case block in my switch statement using C#.
I can see the reason for this in other languages where you can fall through to the next case statement.
Is it …
0
votes
4answers
156 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 switches):
1 - "passive …
2
votes
4answers
147 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 ints and it has to be …
9
votes
12answers
761 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:
break; // **HERE, …
4
votes
8answers
287 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
294 views
C# switch statement
Should I throw NotImplementedException() on default: if I have cases for all possible enum types?
3
votes
5answers
129 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 there one with …
0
votes
1answer
182 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, entering 2 to quit …
1
vote
6answers
168 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;
case …
0
votes
2answers
84 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 .. here is my code …
