Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion articles/v4sdk/bot-builder-howto-v4-state.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ Properties to get the ConversationState is already defined, but you'll need to a
public ConversationState ConversationState { get; }
public UserState UserState { get; }
```
After making the changes, save the file. Next, we will update the Startup class to create `UserState` object to persist anything at the user-scope. The `ConversationState` is already exists.
After making the changes, save the file. Next, we will update the Startup class to create `UserState` object to persist anything at the user-scope. The `ConversationState` already exists.
```csharp

services.AddBot<EchoWithCounterBot>(options =>
Expand Down