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
What is the difference between CONST and READONLY?
When To use HashTable In C#
What is the difference between array and arraylist c#?
Enlist the different types of classes in c#?
Explain a MSIL ? Why is it appreciated by all developers?
what are windows services?
What is managed code?
How is exception handling implemented in c#?
Can abstract class be sealed in c#?
If casting fails what type of exception is thrown?
What are extender provider components?
What is enumerable in c#?
What is unmannaged code and will CLR handle this kind of code or not .
What are the access modifiers in c#?
Why is ienumerable used?