We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c83a60 commit bd95d86Copy full SHA for bd95d86
README.md
@@ -41,11 +41,11 @@ Let's get started by sending event data. You can send an event from anywhere in
41
```csharp
42
using mixpanel;
43
// Track with event-name
44
-Mixpanel.Track('Sent Message');
+Mixpanel.Track("Sent Message");
45
// Track with event-name and property
46
var props = new Value();
47
props["Plan"] = "Premium";
48
-Mixpanel.Track('Plan Selected', props);
+Mixpanel.Track("Plan Selected", props);
49
```
50
51
## 4. Check for Success
0 commit comments