开发者

GetType not defined?

开发者 https://www.devze.com 2023-04-12 01:14 出处:网络
I\'m developing a vb.net program with VS2008. In my case, dt_list is a instance member as List(of Single). When I wrote

I'm developing a vb.net program with VS2008. In my case, dt_list is a instance member as List(of Single). When I wrote

dt_list = CType(ser2.Deserialize(r), dt_list.GetType())

VS2008 complains about "Type 'dt_list.GetType()' is not 开发者_JAVA技巧defined.".

Why? Thanks in advance.


The reason this is not allowed is that the exact value of the type for GetType() must be determined at runtime. The second parameter of CType can only be an "expression that is legal within an As clause in a Dim statement, that is, the name of any data type, object, structure, class, or interface", for instance, List(Of String), which can be determined at compile time.

The following is accordingly legal:

dt_list = CType(ser2.Deserialize(r), List(Of Single))

EDIT:

Casting to an arbitrary type, where the type is not known at compile time, is more involved, however. The proposed answer to this question in the MSDN Forums shows one approach. Though it's in C#, I will guess the same approach can be used in VB.NET as well.


What are you trying to achieve by selecting the cast type at runtime?

You may be able to solve your problem with an interface.

Dim dt_list As IList = Ctype(ser2.Deserialize(r), IList)

This gives you access to all of the List members in IList.

0

精彩评论

暂无评论...
验证码 换一张
取 消