Bamboo.Prevalence.Examples.ToDoList.Task.AssertFieldIsSet C# (CSharp) Метод

AssertFieldIsSet() приватный Метод

private AssertFieldIsSet ( string fieldName, string value ) : void
fieldName string
value string
Результат void
		private void AssertFieldIsSet(string fieldName, string value)
		{
			if (value == null || value.Length == 0)
			{
				throw new ApplicationException(fieldName + " must be set!");
			}
		}
	}