Update README.md
91f9d05e91b3e95ff20f93e6c36917d06e9496c7
1 files changed
README.md
diff --git a/README.md b/README.md
index bcd2182..11dc0e3 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,16 @@
# Object2Json
Adding TypeNameHandling to System.Text.Json
+
+At this moment .NET core 8 and .NET core 9 lacks the TypeNameHandling which can be found in the Newtonsoft project.
+This simple class is aiming to fill this gap to make the System.Text.Json namespace more usefull.
+
+```c#
+using Object2Json;
+
+var json = ObjectJsonSerializer.Serialize(someobject, new JsonSerializerOptions()
+{
+ WriteIndented = true
+});
+
+var sameobject = ObjectJsonSerializer.DeSerialize(json);
+```