From 7111c0bfd266930858308dd1b5a1ec4a76545803 Mon Sep 17 00:00:00 2001 From: Amr Date: Sun, 11 Jun 2017 04:44:36 +0200 Subject: [PATCH] Create README.md --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..d247094 --- /dev/null +++ b/README.md @@ -0,0 +1,7 @@ +# UnitConverterLib (Unit Converter Library) +A Complete Unit Converter Library written in C# + +##Status +This project is still a Work In Progress and is not completed yet. A very high (or arbitrary) precision floating point class is needed to make accurate and precise calculations and conversions so I made a BigDecimal struct (no similar class is available in .NET) based on the BigInteger class provided in the .NET framework. + +The BigDecimal struct will be the main focus of this project until it is acceptably complete. The BigDecimal struct is found in /ArbitraryPrecision/. You are free to fork it and make changes to it to improve it.