J John May 8, 2008 #1 Hi Is there a way to overload split function from system.string? Thanks Regards
A Armin Zingler May 8, 2008 #2 John said: Hi Is there a way to overload split function from system.string? Click to expand... Why? What's the target? Usually that's not necessary. If you insist..... In VB 2008 there are extension methods. Example: Module Module1 <System.Runtime.CompilerServices.Extension()> _ Function Split( _ ByVal value As String, _ ByVal Whatever As Integer) _ As String() End Function End Module AZ
John said: Hi Is there a way to overload split function from system.string? Click to expand... Why? What's the target? Usually that's not necessary. If you insist..... In VB 2008 there are extension methods. Example: Module Module1 <System.Runtime.CompilerServices.Extension()> _ Function Split( _ ByVal value As String, _ ByVal Whatever As Integer) _ As String() End Function End Module AZ