Answer Posted / dextr316
Dim inputvalue As String = TextBox1.Text
Dim reversevalue As String = StrReverse(inputvalue)
If (inputvalue = reversevalue) Then
MsgBox("Palindrome")
Else
MsgBox("Not a Palindrome")
End If
End Sub
| Is This Answer Correct ? | 11 Yes | 2 No |
Post New Answer View All Answers
Why objects are stored in heap in c#?
What are the types of inheritance in c#?
Why do we use struct in c#?
what is virtual method in c#?
Enlist all the components of an ado.net framework?
What is a constructor in c#?
Define parsing? Explain how to parse a datetime string?
Can datetime be null c#?
Are arraylist faster or arrays?
How is method overriding different from overloading?
How do partial classes work in c#?
What are jump statements in c#?
What are the two uses of a ‘using’ statement in c#?
Differentiate between static class and singleton instance?
How do I type a whitespace character?