Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Is it possible to simplify this code?
Message
From
28/05/2014 16:50:10
 
General information
Forum:
ASP.NET
Category:
Coding, syntax and commands
Environment versions
Environment:
C# 4.0
OS:
Windows 7
Network:
Windows 2003 Server
Database:
MS SQL Server
Application:
Web
Miscellaneous
Thread ID:
01581943
Message ID:
01600844
Views:
48
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
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform