这是my.setting中的变量
<Global.System.Configuration.UserScopedSettingAttribute(), _
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
Global.System.Configuration.DefaultSettingValueAttribute("")> _
Public Property Name() As List(Of String)
Get
Return CType(Me("name"), List(Of String))
End Get
Set(value As List(Of String))
Me("name") = value
End Set
End Property
如何使用linq将其放入datagridview 罐