hey there,
i`m working on an interface that I included a region in using
vb.net as in the following example:
Public Interface GlobalFunctions
#Region "Functions"
Function ReturnString(ByVal inputString As String) As String
#End Region
End Interface
but when a class implements that interface, the region is not implemented in the implementing class
so it appers like the following example:
Public Class Class1
Implements GlobalFunctions
Public Function ReturnString(ByVal inputString As String) As String Implements GlobalFunctions.ReturnString
End Function
End Class
but I want the class to implement the region as in the following example:
Public Class Class1
Implements GlobalFunctions
#Region "Functions"
Public Function ReturnString(ByVal inputString As String) As String Implements GlobalFunctions.ReturnString
End Function
#End Region
End Class
please help, thanks in advance