Hi,
I'm not sure why the following does not work:
ReviewApprovers is a list of ContentReviewApprovers. It's complaining about invalid arguments being passed.
How can I get this to work?
Thx.
I'm not sure why the following does not work:
Code:
Public Shared Function ListToString(ByVal objList As List(Of Object)) As String
Dim sb As New StringBuilder
For Each obj As Object In objList
sb.AppendFormat("{0},", obj.ToString)
Next
Return sb.ToString.TrimEnd(Convert.ToChar(","))
End Function
...
Dim result as String = ListToString(ReviewApprovers)
ReviewApprovers is a list of ContentReviewApprovers. It's complaining about invalid arguments being passed.
How can I get this to work?
Thx.