Axiom.UnitTests.Serialization.BitConverterExtensionTests.StringGetBytes C# (CSharp) Method

StringGetBytes() private method

private StringGetBytes ( ) : void
return void
        public void StringGetBytes()
        {
            String data = "What is the answer to life the universe and everything?";

            // This function should fail on Strings
            byte[] actual = BitConverterEx.GetBytes(data);
        }