anguslogan
| Forum | Thread | Replies | Latest activity |
|---|---|---|---|
| Coffeehouse | Channel 9 team :: help with Live ID login | 11 | Apr 15, 2009 at 5:32 PM |
Loading User Information from Channel 9
Something went wrong getting user information from Channel 9
Loading User Information from MSDN
Something went wrong getting user information from MSDN
Loading Visual Studio Achievements
Something went wrong getting the Visual Studio Achievements
| Forum | Thread | Replies | Latest activity |
|---|---|---|---|
| Coffeehouse | Channel 9 team :: help with Live ID login | 11 | Apr 15, 2009 at 5:32 PM |
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