Skip to content

Commit

Permalink
Update Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
AnthoDingo committed Jul 29, 2024
1 parent 6609838 commit 39ae71c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# FrApps42.Net.VCards
# FrApp42.Net.VCards

Based on project [MixERP.Net.VCards](https://github.com/mixerp/MixERP.Net.VCards)

Expand All @@ -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**
Expand All @@ -41,13 +41,13 @@ File.WriteAllText(path, serialized);

**Parse a VCF File**
```csharp
IEnumerable<VCard> vcards = FrApps42.Net.VCards.Deserializer.Deserialize(path);
IEnumerable<VCard> vcards = FrApp42.Net.VCards.Deserializer.Deserialize(path);
```
or

```csharp
string contents = File.ReadAllText(path, Encoding.UTF8);
IEnumerable<VCard> vcards = FrApps42.Net.VCards.Deserializer.GetVCards(contents);
IEnumerable<VCard> vcards = FrApp42.Net.VCards.Deserializer.GetVCards(contents);

foreach (var vcard in vcards)
{
Expand Down

0 comments on commit 39ae71c

Please sign in to comment.