view Tools/DocGen/Content/Doc/Aspects/NotNull.cs @ 1:8f65451dc28f

Исправлена проблема с фабрикой и выборкой нескольких объектов в linq выражении
author cin
date Fri, 28 Mar 2014 01:04:56 +0400
parents f990fcb411a9
children
line wrap: on
line source

[BLToolkitGenerated]
public sealed class TestObject : NotNullTest.TestObject
{
	public override void Foo1(string str1, string str2, string str3)
	{
		if (str2 == null) throw new ArgumentNullException("str2");

		base.Foo1(str1, str2, str3);
	}

	public override void Foo2(string str1, string str2, string str3)
	{
		if (str2 == null) throw new ArgumentNullException("str2", "Null");

		base.Foo2(str1, str2, str3);
	}

	public override void Foo3(string str1, string str2, string str3)
	{
		if (str2 == null) throw new ArgumentNullException("str2", "Null: str2");

		base.Foo3(str1, str2, str3);
	}
}