@VivekJ - the control is ASP.NET control does allow you to build in C# for hte code behind. As for a SL control - there is one coming in the future - watch the VE session - there is a mention and a short demo of the control http://sessions.visitmix.com/?selectedSearch=T17
This Week on C9: Live ID goes Open ID, cool Silverlight Toolkit and themes, and SecondLight video
Nov 09, 2008 at 7:24 AM/angus
This Week on C9: ASP.NET Maps, Apache, Sphere, Warcraft, and more
Aug 02, 2008 at 12:57 PMThis Week on C9: ASP.NET Maps, Apache, Sphere, Warcraft, and more
Aug 02, 2008 at 12:55 PMThis Week on Channel 9: Feb 22 with Ed Kaim!
Feb 22, 2008 at 1:44 PMEd mentioned me but they left a link out of the show notes.
Angus Logan's Blog and http://dev.live.com
Gary Daniels and Evan Goldring - Mock whiteboard problem
Aug 25, 2004 at 4:48 AMWhy recurse when someone else has already written the code for you?
Private Function IsPalindrome(ByVal strTest As String) As Boolean
If (strTest.Length > 0) Then
Dim sourceArray As Char() = strTest.ToCharArray()
Dim reversedArray(sourceArray.Length - 1) As Char
System.Array.Copy(sourceArray, reversedArray, sourceArray.Length)
reversedArray.Reverse(reversedArray)
Return (sourceArray = reveredArray)
Else
Return (False)
End If
End Function
BLOG: www.anguslogan.com