fix: refine csharp example
This commit is contained in:
parent
7cf96a51d9
commit
8ed5afe031
|
@ -36,7 +36,11 @@ dotnet build -c Release
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
```
|
```
|
||||||
Usage: mono taosdemo.exe [OPTION...]
|
Usage with mono:
|
||||||
|
$ mono taosdemo.exe [OPTION...]
|
||||||
|
|
||||||
|
Usage with dotnet:
|
||||||
|
Usage: .\bin\Release\net5.0\taosdemo.exe [OPTION...]
|
||||||
|
|
||||||
--help Show usage.
|
--help Show usage.
|
||||||
|
|
||||||
|
|
|
@ -72,7 +72,7 @@ namespace TDengineDriver
|
||||||
{
|
{
|
||||||
if ("--help" == argv[i])
|
if ("--help" == argv[i])
|
||||||
{
|
{
|
||||||
Console.WriteLine("Usage: mono taosdemo.exe [OPTION...]");
|
Console.WriteLine("Usage: taosdemo.exe [OPTION...]");
|
||||||
Console.WriteLine("");
|
Console.WriteLine("");
|
||||||
HelpPrint("--help", "Show usage.");
|
HelpPrint("--help", "Show usage.");
|
||||||
Console.WriteLine("");
|
Console.WriteLine("");
|
||||||
|
|
Loading…
Reference in New Issue