System.CodeDom.Tests.CodeAttributeArgumentTests.Ctor_TestData C# (CSharp) Method

Ctor_TestData() public static method

public static Ctor_TestData ( ) : IEnumerable
return 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") };
		}