1
0
Fork 0
mirror of synced 2024-06-03 03:14:50 +12:00

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
parent 0fd027b957
commit 90e05fec87
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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);