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
Can a constructor have a return type?
Can we create instance of private class in c#?
What is the difference between var and dynamic types in c# 4.0?
What does the dispose method do with the connection object?
What is the difference between == and object.equals?
What is null in database?
What are the advantages of using partial classes?
What is polymorphism and its types in c#?
Explain how to implement delegates in c#.net
To allow an element to be accessed using a unique key which .NET collection class is used ?
Difference between value and reference type. What are value types and reference types?
What is readline c#?
Is it true that all c# types derive from a common base class?
What is the c# equivalent of c++ catch (...), Which was a catch-all statement for any possible exception?
What is a string c#?