VB.net Datatable单元格到字符串

时间:2015-08-13 00:16:34

标签: vb.net datatable tostring

这应该很容易..

我有一个数据表,其值为' 1234.5'。当我将其转换为字符串时,它会丢弃小数并变为' 1234'。

For Each row As DataRow In dt.Rows
    myvalue = row("ColumnName").toString

    'some other stuff with myvalue
Next

如何使输出显示单元格中的完整字符串(包括十进制数字)? ' 1234.5'

谢谢!

1 个答案:

答案 0 :(得分:-1)

这样的事情怎么样?

Imports System.Data
Module Module1

    Sub Main()
        Dim dt As New DataTable

        Dim resutls As List(Of String) = dt.AsEnumerable().Select(Function(x) x.Field(Of Double)("ColumnName").ToString()).ToList()

    End Sub

End Module​