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.
我有这样的课
Public Class alink Public url As String Public id As Integer Public linksto As New List(Of Integer)() End Class
这是这样声明的..
Public thelinklist As New List(Of alink)()
我的问题是如何去写和读这个列表到文件?
我完全不确定要使用什么方法!
取决于您希望如何使用文件,如果它仅用于存储/加载对象并且不需要人类可读,则可以使用serialization。