以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- [讨论]字符集合转化为整数型集合失败 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=177068) |
-- 作者:moseser -- 发布时间:2022/5/8 10:40:00 -- [讨论]字符集合转化为整数型集合失败 Dim S_int_list As new List(of Integer) For Each s_u As String In S_u_s If s_u IsNot Nothing Then Dim n_n As Integer = Cint(s_u) s_int_list.Add(n_n) End If Next 将字符型集合 s_u_s 转化为整数型集合 s_int_list 提示转换无效 1:我是先通过 datatable的getvalue方法,提取了一列的 数字到了 s_u_s 集合中 2:为了进行数值大小的判断,我需要将其转成整数型 |
-- 作者:狐狸爸爸 -- 发布时间:2022/5/8 10:44:00 -- Dim S_int_list As New List(Of Integer) For Each s_u As String In S_u_s If s_u IsNot Nothing Then Dim n_n As Integer If Integer.TryParse(s_u, n_n) Then s_int_list.Add(n_n) End if End If Next 参考: |
-- 作者:moseser -- 发布时间:2022/5/8 10:50:00 -- 回复:(狐狸爸爸)Dim S_int_list As New List(Of In... 非常感谢大神!!!周末还再为我们服务 |