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

changes made dotnet GETTING_STARTED.md

This commit is contained in:
Pratik Gupta 2023-10-17 18:19:02 +05:30 committed by GitHub
parent ec17284bfd
commit 8ac7aca2a4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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