1
0
Fork 0
mirror of synced 2024-07-04 14:10:33 +12:00

Update dotnet GETTING_STARTED.md

This commit is contained in:
Pratik Gupta 2023-10-19 00:57:12 +05:30 committed by GitHub
parent 618c14524d
commit 15863c2886
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -17,9 +17,9 @@ var users = new Users(client);
var user = await users.Create(
userId: ID.unique(),
email: 'email@example.com',
phone: '+123456789',
password: 'password',
email: "email@example.com",
phone: "+123456789",
password: "password",
name: "Walter O'Brien");
Console.WriteLine(user.ToMap());
@ -35,9 +35,9 @@ try
{
var user = await users.Create(
userId: ID.unique(),
email: 'email@example.com',
phone: '+123456789',
password: 'password',
email: "email@example.com",
phone: "+123456789",
password: "password",
name: "Walter O'Brien");
}
catch (AppwriteException e)