You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Darwinism/RQL/StorageTek/API.vb

16 lines
404 B

Public Module API
''' <summary>
'''
''' </summary>
''' <param name="url"></param>
''' <param name="type">单个元素的类型</param>
''' <returns></returns>
Public Function XmlList(url As String, type As Type) As IEnumerable
Dim listType As Type = GetType(List(Of )).MakeGenericType(type)
Dim obj As Object = LoadXml(Of ()
End Function
End Module