martin-g commented on code in PR #3423: URL: https://github.com/apache/avro/pull/3423#discussion_r2179826429
########## lang/csharp/src/apache/test/AvroDecimalTest.cs: ########## @@ -38,7 +38,19 @@ public void TestAvroDecimalToString(decimal value) { var valueString = value.ToString(); - var avroDecimal = new AvroDecimal(value); + var avroDecimal = new AvroDecimal(value); + var avroDecimalString = avroDecimal.ToString(); + + Assert.AreEqual(valueString, avroDecimalString); + } + + [Test] + public void TestHighPrecisionAvroDecimalToString() + { + var value = 4.1748330066797328106875724512m; // High precision decimal value Review Comment: What is `m` at the end of the number ? Magic ? :-) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@avro.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org