Bamboo.Prevalence.Examples.ToDoList.Task.AssertFieldIsSet C# (CSharp) Method

AssertFieldIsSet() private method

private AssertFieldIsSet ( string fieldName, string value ) : void
fieldName string
value string
return void
		private void AssertFieldIsSet(string fieldName, string value)
		{
			if (value == null || value.Length == 0)
			{
				throw new ApplicationException(fieldName + " must be set!");
			}
		}
	}