We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14df97e commit 32ed998Copy full SHA for 32ed998
docs/sdks/c-sharp/quickstart.md
@@ -141,15 +141,15 @@ To `Program.cs`, add:
141
const string HOST = "http://localhost:3000";
142
143
/// The database name we chose when we published our module.
144
-const string DBNAME = "quickstart-chat";
+const string DB_NAME = "quickstart-chat";
145
146
/// Load credentials from a file and connect to the database.
147
DbConnection ConnectToDB()
148
{
149
DbConnection? conn = null;
150
conn = DbConnection.Builder()
151
.WithUri(HOST)
152
- .WithModuleName(DBNAME)
+ .WithModuleName(DB_NAME)
153
.WithToken(AuthToken.Token)
154
.OnConnect(OnConnected)
155
.OnConnectError(OnConnectError)
0 commit comments