Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
C# Equivalent To VFP DO CASE
Message
 
To
29/12/2004 06:53:48
Cetin Basoz
Engineerica Inc.
Izmir, Turkey
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Miscellaneous
Thread ID:
00972871
Message ID:
00973155
Views:
25
>>I am trying to convert some strings based on conditions. In VFP I would do something like:
>>
>>
>>DO CASE
>>CASE condition a
>>   && code here
>>CASE condition b
>>   && code here
>>OTHERWISE
>>   && code here
>>ENDCASE
>>
>>
>>How would this be coded in C#?
>>
>>TIA, Kevin
>
>There is not an exact match in C# (as it can be used in VFP in different ways).
>One match is 'switch'. Expression result is determined at top and one of sbyte,byte,short,ushort,int,uint,long,ulong,char,string or enum type. In VFP's case statements blocks are implicitly 'broken' and there is no fall through. In C# fall through is not allowed but you must explicitly 'break' (break,go to,return..). ie:
>
>
>int result = SomeMethod();
>switch (result)
>{
> case 0:
>   // ...
>   break;
> case 1:
>   // ...
>  break;
> otherwise
>  //...
>}
>
Cetin,

Shouldn't this be
switch (result)
{
  case 0:
    // ...
    break;
  case 1:
    // ...
    break;
  default:
    //...
    break;
}
?
George

Ubi caritas et amor, deus ibi est
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform