All Questions
Tagged with square-bracket vb.net
5 questions
0
votes
1
answer
115
views
How match with pattern and "like" operator escaping sware brackets ([]) in .net
This method returns true when it shouldn't
pattern = "*[[email protected]]*"
file = "test.pdf"
If file Like pattern Then
MsgBox("like method, file: " & file)
End If
for every ...
4
votes
1
answer
932
views
Square brackets around function name
I try to understand delegates at the moment and stumbled across the following snippet:
Function [Select](ByVal numbers As List(Of Integer), ByVal filter As Filter) As List(Of Integer)
Dim result ...
0
votes
2
answers
167
views
Differences of the usage of the Square brackets [ ] beetwen "As String" and "As [String]"? [duplicate]
Someone can explain me which are the differences between using the Square brackets [ ] as this:
Private Function FindItem([ListView] As [ListView], [ColumnIndex] As [Int32], [SearchString] As [String]...
5
votes
6
answers
4k
views
Escape [ Square Brackets ] in Fast Report Strings
Good Morning.
I am trying to use Fast Reports v1.4.42
Everything was going well up until I attempted to concatenate a string.
I am trying to create a string that looks somewhat like the following.
...
1
vote
2
answers
624
views
what do the square brakets mean in vb.net in this string
What do the square brakets mean in vb.net in this variable below defining as [String]
Dim client As New WebClient()
Dim htmlCode As [String] = client.DownloadString("http://www.stackoverflow.com")