Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
C# Equivalent To VFP DO CASE
Message
 
À
29/12/2004 06:53:48
Cetin Basoz
Engineerica Inc.
Izmir, Turquie
Information générale
Forum:
ASP.NET
Catégorie:
Code, syntaxe and commandes
Divers
Thread ID:
00972871
Message ID:
00973155
Vues:
26
>>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
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform