System.Reflection.Tests.AssemblyNameTests.ReferenceMatchesDefinition_TestData C# (CSharp) Méthode

ReferenceMatchesDefinition_TestData() public static méthode

public static ReferenceMatchesDefinition_TestData ( ) : IEnumerable
Résultat IEnumerable
        public static IEnumerable<object[]> ReferenceMatchesDefinition_TestData()
        {
            yield return new object[] { new AssemblyName(typeof(AssemblyNameTests).Assembly.FullName), new AssemblyName(typeof(AssemblyNameTests).Assembly.FullName), true };
            yield return new object[] { new AssemblyName(typeof(AssemblyNameTests).Assembly.FullName), new AssemblyName("System.Runtime"), false };
        }