Skip to content

Commit 3c2cbbf

Browse files
committed
Use ValueTuple instead of TarantoolTuple
1 parent 5081e58 commit 3c2cbbf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

samples/tarantool.org/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ cat <<EOT > Program.cs
3333
using System;
3434
using System.Threading.Tasks;
3535
using ProGaudi.Tarantool.Client;
36-
using ProGaudi.Tarantool.Client.Model;
36+
3737
public class HelloWorld
3838
{
3939
static public void Main ()
@@ -45,7 +45,7 @@ public class HelloWorld
4545
var box = await Box.Connect("127.0.0.1:3301");
4646
var schema = box.GetSchema();
4747
var space = await schema.GetSpace("examples");
48-
await space.Insert(TarantoolTuple.Create(99999, "BB"));
48+
await space.Insert((99999, "BB"));
4949
}
5050
}
5151
EOT

0 commit comments

Comments
 (0)