Update docs/sdks/dotnet/GETTING_STARTED.md

Co-authored-by: Jake Barnby <jakeb994@gmail.com>
This commit is contained in:
Damodar Lohani
2022-09-07 11:06:38 +05:45
committed by GitHub
co-authored by Jake Barnby
parent 0fd027b957
commit 90e05fec87
+1 -1
View File
@@ -35,7 +35,7 @@ The Appwrite .NET SDK raises `AppwriteException` object with `message`, `code` a
var users = Users(client);
try {
var user = await users.create(ID.unique(), 'email@example.com', 'password', 'name');
var user = await users.Create(ID.Unique(), 'email@example.com', 'password', 'name');
Console.WriteLine(user.ToMap());
} catch (AppwriteException e) {
Console.WriteLine(e.Message);