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 are access modifiers used for?
Describe the overview of clr integration.
Explain states of a thread in c#?
How do you create partial methods?
Why we use get and set property in c#?
Can I call a virtual method from a constructor/destructor?
What are the types of inheritance in c#?
Is list passed by reference c#?
what is a destructor?
How do you clear a list in c#?
Differentiate between the public and private ?
Explain how do you debug an asp.net web application?
Is ram a heap?
Why are dynamic link library used over static one?
How can you read 3rd line from a text file?