我有一個對象實例,我訪問與ME訪問實例化對象。我有一個方法獲取這些對象的集合,我希望將第一個分配給實例化的對象。VB.NET - 我如何分配一個對象到一個對象實例(更好的描述裏面)
這是一些代碼
Dim Books As New BookCollection(True)
Books.ListByThemeFeatured(ThemeID, 1) ' Fills the collection
If Books.Count > 0 Then
Me = Books(0) ' Should set the first item to the current object
End If
的是這可能嗎?
編輯:我指的是被實例化的類。在這種情況下,它是一個BookEntity類。該方法本來會被稱爲使用以下代碼
Dim Book As New BookEntity
Book.FeaturedBook() ' Should fill the book entity with a featured book
我正試圖避免因爲房產一直在變化而不得不手動編碼這類事情。 – 2008-11-07 09:14:37