Bonekrusher
Active member
- Joined
- Jul 4, 2007
- Messages
- 38
- Programming Experience
- 1-3
Hi,
I am creating a xslt extension using Saxon and .net. The saxon process is able to load the dll, but cant read finf the function "testFunction"
Is this written correctly? Here is my class:
I am creating a xslt extension using Saxon and .net. The saxon process is able to load the dll, but cant read finf the function "testFunction"
Is this written correctly? Here is my class:
VB.NET:
Namespace ACM
Public Class testFunction
Public Shared Function create() As testFunction
Return New testFunction
End Function
Public Shared Function returnDate(ByVal xslDate As String) As String
Return xslDate
End Function
End Class
End Namespace
Last edited: