SchemaZen.Library.Models.ForeignKey.AssertArgNotNull C# (CSharp) Méthode

AssertArgNotNull() private méthode

private AssertArgNotNull ( object arg, string argName ) : void
arg object
argName string
Résultat void
		private void AssertArgNotNull(object arg, string argName) {
			if (arg == null) {
				throw new ArgumentNullException(string.Format(
					"Unable to Script FK {0} on table {1}.{2}. {3} must not be null.", Name, Table.Owner, Table.Name, argName));
			}
		}