Wednesday 11 January 2017

switch in c#

switch (ds.Tables[0].Rows[0]["STATE"].ToString())
                        {
                            case "CA": strPhone = "(877) 702-6666"; break;
                            case "CO": strPhone = "(877) 730-6666"; break;
                            case "NV": strPhone = "(877) 782-6666"; break;
                            case "UT": strPhone = "(877) 950-6666"; break;
                            case "AZ": strPhone = "(877) 272-6666"; break;
                            case "TX": strPhone = "(877) 575-6666"; break;
                        }

No comments:

Post a Comment