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
Explain About .NET Remoting and types of remoting
User's session is explicitly killed by which method ?
What is the difference between static class and singleton class in c#?
What is sqladapter c#?
What is inner class in c#?
Is null empty or whitespace c#?
Which function is the entry point for a DLL in MS Windows 3.1?
What is uint16?
what optimizations does the c# compiler perform when you use the /optimize+ compiler option?
How can it prevents DLL Hell assembly versioning in .NET?
explain the nature of the assembly work?
What is the difference between method and function in c#?
Explain about accessibility modifier 'protected internal'?
What is Dependency of Injection?
Is struct object oriented?