Skip to content

Commit fca808d

Browse files
committed
Update BasicAnyVector.cs
1 parent 49c5aa5 commit fca808d

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

dolphindb_csharpapi/data/BasicAnyVector.cs

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
using dolphindb.io;
22
using System;
33
using System.Text;
4+
using System.Collections.Generic;
5+
using System.Linq;
46

57
namespace dolphindb.data
68
{
@@ -128,6 +130,11 @@ public override void set(int index, string value)
128130
values[index] = new BasicString(value);
129131
}
130132

133+
public override object getList()
134+
{
135+
return values.ToList();
136+
}
137+
131138
public override void add(object value)
132139
{
133140
throw new NotImplementedException();

0 commit comments

Comments
 (0)