System.CodeDom.Tests.CodeAttributeArgumentTests.Ctor_TestData C# (CSharp) Метод

Ctor_TestData() публичный статический Метод

public static Ctor_TestData ( ) : IEnumerable
Результат IEnumerable
		public static IEnumerable<object[]> Ctor_TestData()
		{
			yield return new object[] { null, null };
			yield return new object[] { "", new CodePrimitiveExpression("Value1") };
			yield return new object[] { "Value1", new CodePrimitiveExpression("Value1") };
		}