Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 VB 中有一个带有数字的数组。如何将其保存在 txt 文件中?
例如,在 R 中,我这样做:“write.matrix(A,file=name)”。所以带有“名称”的数组也存储在 VB 中,我想在这里做同样的事情。
问候,丹尼尔
您可以将其写入 csv 文件,fe 管道分隔(因为数字可以包含逗号):
File.WriteAllText(filePath, String.Join("|", numbers))
File.WriteAllText方法
File.WriteAllText
您可以稍后以这种方式加载数组:
Dim split = From str In File.ReadAllText(filePath).Split("|"c) Select Double.Parse(str) Dim numbers As Double() = split.ToArray()