我是一個vb.net新手,所以請耐心等待。是否有可能在visual basic(我使用Visual Basic 2005)中爲類創建屬性(或屬性)?所有的網絡搜索元編程讓我無處可尋。這裏有一個例子來說明我的意思。動態屬性在Visual Basic中的類
public class GenericProps
public sub new()
' ???
end sub
public sub addProp(byval propname as string)
' ???
end sub
end class
sub main()
dim gp as GenericProps = New GenericProps()
gp.addProp("foo")
gp.foo = "Bar" ' we can assume the type of the property as string for now
console.writeln("New property = " & gp.foo)
end sub
那麼有可能定義函數addProp?
謝謝! Amit
序列化,可以很有趣。 – 2009-02-27 04:23:52