I have created a Namespace named String1
in which i have created a class named String11
in that class i have two functions
Trim1 ( Byval Str as String )
ReplaceStr ( Byval Str as String )
now i have to use it as Trim1(str) ' str is String
ReplaceStr (str) ' str is String
But how can i use it like str.Trim1() or str.ReplaceStr
in which i have created a class named String11
in that class i have two functions
Trim1 ( Byval Str as String )
ReplaceStr ( Byval Str as String )
now i have to use it as Trim1(str) ' str is String
ReplaceStr (str) ' str is String
But how can i use it like str.Trim1() or str.ReplaceStr
Comment