Nfield.Services.Implementation.NfieldSurveyRelocationsService.CheckSurveyId C# (CSharp) 메소드

CheckSurveyId() 개인적인 정적인 메소드

private static CheckSurveyId ( string surveyId ) : void
surveyId string
리턴 void
        private static void CheckSurveyId(string surveyId)
        {
            if (surveyId == null)
                throw new ArgumentNullException(nameof(surveyId));
            if (surveyId.Trim().Length == 0)
                throw new ArgumentException("surveyId cannot be empty");
        }