Skip to content

Commit e2e2f5b

Browse files
committed
Merge branch 'master' of https://github.com/dolphindb/api-csharp
2 parents 1e0c372 + 773dfba commit e2e2f5b

File tree

6 files changed

+5
-2
lines changed

6 files changed

+5
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,4 @@ dolphindb_csharpapi/obj/
3232
*.cache
3333
.vs/dolphindb_csharpapi/v15/.suo
3434
*.cache
35+
*.cache
Binary file not shown.
Binary file not shown.

dolphindb_csharpapi/io/AbstractExtendedDataOutputStream.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,8 @@ public void writeFloat(float v)
7373

7474
public void writeDouble(double v)
7575
{
76+
//byte[] b = BitConverter.GetBytes(v);
77+
//base.Write(b);
7678
long s = BitConverter.DoubleToInt64Bits(v);
7779
writeLong(s);
7880
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
b8e98d532139d9fd5e4e9b3b5029f75b65727d77
1+
300a3e3f6d751e552831515a2cbc81fa22ab9ed0
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8d297cf0284ce4c516fb20e0b035a54cac46e831
1+
7da0bb4197c581e81c4afbe1598b91c893f9a237

0 commit comments

Comments
 (0)