TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
latika singh
NA
31
33.6k
VB.Net string concatenation
Mar 6 2012 5:21 PM
Dear All,
I have a following string:
axis_interface(0).Parameter
I need to pass "0" through a property which is:
Public Property Acc(ByVal index As Short) As Double
Get
Return axis_interface.Value
("axis_interface() & index & .Par.Acceleration")
End Get
Set(ByVal value As Double)
axis_interface.Value
("axis_interface( " & index & ").Par.Acceleration") = value
End Set
End Property
Please suggest how do I join the strings highlighted above so that I can relate to axis_interface(0).Parameter string.
Reply
Answers (
2
)
Passing string to an int property
How to get memory usage from Task Manager?