J
jvcoach23
I'm using some public properties that i create in a custom class. my
question is how do you add a comment so that it will show up in intellesense
when you are using that property. say
Public Class Testing
private mFilterData as string
public property FilterData as string
get
return mFilterData
end get
set....
....
end property
end class
when i call that property it tells me it needs a string, but i'd like to add
a descrition, like Microsofts does... say like "This is a description to help
you know what youare suppose to put in."
thanks
question is how do you add a comment so that it will show up in intellesense
when you are using that property. say
Public Class Testing
private mFilterData as string
public property FilterData as string
get
return mFilterData
end get
set....
....
end property
end class
when i call that property it tells me it needs a string, but i'd like to add
a descrition, like Microsofts does... say like "This is a description to help
you know what youare suppose to put in."
thanks