Index: /trunk/Include/Classes/System/String.ab
===================================================================
--- /trunk/Include/Classes/System/String.ab	(revision 427)
+++ /trunk/Include/Classes/System/String.ab	(revision 428)
@@ -355,4 +355,8 @@
 		End Function
 
+		Const Function Contains(c As StrChar) As Boolean
+			Return IndexOf(c) >= 0
+		End Function
+
 		Const Function Contains(s As String) As Boolean
 			If Object.ReferenceEquals(s, Nothing) Then
@@ -480,6 +484,14 @@
 		End Function
 
+		Const Function StartsWith(c As StrChar) As Boolean
+			Return IndexOf(c) = 0
+		End Function
+
 		Const Function StartsWith(s As String) As Boolean
 			Return IndexOf(s) = 0
+		End Function
+
+		Const Function EndsWith(c As StrChar) As Boolean
+			Return LastIndexOf(c) = m_Length - 1
 		End Function
 
