コード例 #1
0
        public void ElementTypeSignitureToken_IsToken_WhenContentIsArrayAndArrayIsNotValid_ReturnsTrue()
        {
            byte[]       content = new byte[] { (byte)ElementTypes.Array };
            ElementTypes allowed = ElementTypes.TypedByRef;

            bool result = ElementTypeSignatureToken.IsToken(content, 0, allowed);

            Assert.IsFalse(result);
        }