Check null and empty string in ASP.Net C#

Check null and empty string in ASP.Net C#

Hello everyone, I am going to share the code sample for check null and empty string in ASP.Net C#.

String IsNullOrEmpty Syntax

if (!string.IsNullOrEmpty(inputString)){} else{}

The code detail given below

public bool ResetAccessFailedCount(string EmailId, int CountAttempt)
{
    bool IsSuccess = false;
    if (!string.IsNullOrEmpty(EmailId))
    {
        var user = base.Context.Tbl_Users.Where(e => e.UserEmail == EmailId).FirstOrDefault();
        if (user != null)
        {
            user.FailedLoginAttempt = CountAttempt;
            user.LastLogin = DateTime.Now;

            Context.SaveChanges();
            IsSuccess = true;
        }
    }
    return IsSuccess;
}



ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^