0
votes
VB.NET - How do I assign an object to an object instance (better description inside)
You can't. What you're looking for is a static (shared in VB) method:
Dim Book as BookEntity
Book = BookEntity.FeaturedBook()
…
1
vote
Automatic casting to string in C# and VB.NET
I'd suggest to stay away from raw string concatenation, if possible.
Good alternatives are using string.format:
str = String.Format("Hello {0} workd", Number)
…
