Page 1 of 1

Question:2. Write a C# program to accept the user's full name and email id. Validate the name and email id as per the fo

Posted: Fri Apr 29, 2022 6:43 am
by answerhappygod
Question 2 Write A C Program To Accept The User S Full Name And Email Id Validate The Name And Email Id As Per The Fo 1
Question 2 Write A C Program To Accept The User S Full Name And Email Id Validate The Name And Email Id As Per The Fo 1 (47.26 KiB) Viewed 30 times
Question:2. Write a C# program to accept the user's full name and email id. Validate the name and email id as per the following. a. Name can only contain letters, spaces, and an apostrophe ('). b. Email should be in format <email>@<provider> C. <email> can only have alphanumeric and “.” and “_” as special symbols and nothing else. d. <email> can't start or end with a special symbol. e. <provider> should have a minimum of 1 and maximum of 2 dot symbols, “.”, in it and at least two letters on each side of the dot “.” Symbols Code related guidelines: Your C# console-based application should include the following: 1. The code should have a consistent, professional, and well-organized appearance. 2. Code should compile without errors. 3. Choose meaningful identifiers names. 4. The developed system takes inputs and handles the error in friendly manner. 5. Your code must adhere to OOPS concepts with implementation guidelines including modularity, reusability, extensibility, maintainability, and adaptability.