How to return output from .Net Dll to the calling Application

Posted by sachin on Stack Overflow See other posts from Stack Overflow or by sachin
Published on 2011-11-15T09:45:45Z Indexed on 2011/11/15 9:50 UTC
Read the original article Hit count: 193

Filed under:

I have to create one VB.Net Dll for VB.Net Application.In DLL there will be function to calculate the fee based on some parameter which I pass when call the function from appllication, output of calculated fee would be this type

**Validations are not selected.
Rate information: 
IN:11/14/20113:12:38 PM; OUT:11/15/20113:12:38 PM; Fee:3; Description:$3 Fixed
IN:11/14/20113:12:38 PM; OUT:11/15/20113:12:38 PM; Fee:1; Description:$1 Fixed
Sub Total: 
IN: 11/14/20113:12:38 PM; OUT: 11/15/20113:12:38 PM; Fee:4; Description: Rate Group1
Rate information: 
IN:11/14/20113:12:38 PM; OUT:11/15/20113:12:38 PM; Fee:3; Description:$3 Fixed
Sub Total: 
IN: 11/14/20113:12:38 PM; OUT: 11/15/20113:12:38 PM; Fee:3; Description: Rate Group1**

Can anybody tell me how can I return output of this type to the application ,so that I can use it in that application.

© Stack Overflow or respective owner

Related posts about .NET