Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Is it possible to simplify this code?
Message
De
28/05/2014 16:50:10
 
 
Information générale
Forum:
ASP.NET
Catégorie:
Code, syntaxe and commandes
Versions des environnements
Environment:
C# 4.0
OS:
Windows 7
Network:
Windows 2003 Server
Database:
MS SQL Server
Application:
Web
Divers
Thread ID:
01581943
Message ID:
01600844
Vues:
49
This message has been marked as a message which has helped to the initial question of the thread.
That's a very good candidate for chain of responsibility pattern.


>How about this case - is there a way to simplify? (In VFP it's case expression):
>
>
> Boolean isRedemptionValid = row.Field<Boolean>("IsRedemptionValid"),
>                        isDateValid = row.Field<Boolean>("IsDateValid"),
>                        isTimeValid = row.Field<Boolean>("IsTimeValid"),
>                        isDowValid = row.Field<Boolean>("IsDowValid");
>
>                    if (isRedemptionValid && isDateValid && isTimeValid && isDowValid)
>                        {
>                            availability = "Available for Redemption";
>                        }
>                    else
>                        if (!isRedemptionValid)
>                        {
>                            availability = "Not enough number of uses";
>                        }
>                        else
>                            if (!isDateValid)
>                            {
>                                availability = "Not available in the date range";
>                            }
>                            else
>                                if (!isTimeValid)
>                                {
>                                    availability = "Not available in the time range";
>                                }
>                                else
>                                {
>                                    availability = "Not available on that day of the week";
>                                }
Craig Berntson
MCSD, Microsoft .Net MVP, Grape City Community Influencer
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform