I am trying to create a dll which will do a lot of complex calculations so first I need to create the exposed variables which will recieve data.
IF I create a structure which groups variables logically ie.
Public Structure DataRange
Public Min As Integer
Public Max As Integer
Public Val As Integer
End Structure
Public Class MyCalcs
Public MyValues As DataRange
End Class
I can expose MyValues but I also expose DataRange as well.
If on the other hand I do not make the structure public I get an error telling me that 'MyValues cannot expose DataRange through class MyCalcs'
How can I expose Myvalues.min without Datarange being exposed
IF I create a structure which groups variables logically ie.
Public Structure DataRange
Public Min As Integer
Public Max As Integer
Public Val As Integer
End Structure
Public Class MyCalcs
Public MyValues As DataRange
End Class
I can expose MyValues but I also expose DataRange as well.
If on the other hand I do not make the structure public I get an error telling me that 'MyValues cannot expose DataRange through class MyCalcs'
How can I expose Myvalues.min without Datarange being exposed