BuildLight.Core.CodeContracts.ParameterCheck.ParameterNameRequired C# (CSharp) Method

ParameterNameRequired() private static method

private static ParameterNameRequired ( string parameterName ) : void
parameterName string
return void
        private static void ParameterNameRequired(string parameterName)
        {
            Require(!string.IsNullOrEmpty(parameterName), GetParameterRequiredErrorMessage("parameterName"));
        }