From 39ae71cd610980ecaa0f1473fcffb9a8125fa1b8 Mon Sep 17 00:00:00 2001 From: Janus Date: Mon, 29 Jul 2024 19:56:08 +0200 Subject: [PATCH] Update Readme --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 101ee40..b06ca48 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# FrApps42.Net.VCards +# FrApp42.Net.VCards Based on project [MixERP.Net.VCards](https://github.com/mixerp/MixERP.Net.VCards) @@ -14,7 +14,7 @@ VCards is a standard-compliant, lightweight, and forgiving vCard parser written **Download Nuget Package** ```nuget -Install-Package FrApps42.Net.VCards +Install-Package FrApp42.Net.VCards ``` **Create a vCard** @@ -41,13 +41,13 @@ File.WriteAllText(path, serialized); **Parse a VCF File** ```csharp -IEnumerable vcards = FrApps42.Net.VCards.Deserializer.Deserialize(path); +IEnumerable vcards = FrApp42.Net.VCards.Deserializer.Deserialize(path); ``` or ```csharp string contents = File.ReadAllText(path, Encoding.UTF8); -IEnumerable vcards = FrApps42.Net.VCards.Deserializer.GetVCards(contents); +IEnumerable vcards = FrApp42.Net.VCards.Deserializer.GetVCards(contents); foreach (var vcard in vcards) {