MSDN-WhiteKnight / CilTools

A set of tools to work with CIL in .NET applications

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Type.IsValueType returns wrong value on .NET Core

MSDN-WhiteKnight opened this issue · comments

    [TestMethod]
    [TypeTestData(typeof(SequentialStructSample), BytecodeProviders.Metadata)]
    public void Test_StructLayoutAttribute_Sequential(Type t)
    {
        Assert.IsTrue(t.IsValueType); //fails
    }