Beispiel #1
0
        public void TestJavaEnum(ByteOrder order)
        {
            var javaEnum = new JavaEnum(TestSupport.RandomString(), TestSupport.RandomString());

            AssertSerialization(javaEnum, order);
        }
 protected bool Equals(JavaEnum other)
 {
     return(string.Equals(Type, other.Type) && string.Equals(Value, other.Value));
 }
 protected bool Equals(JavaEnum other)
 {
     return string.Equals(Type, other.Type) && string.Equals(Value, other.Value);
 }