DataTable as parameter.
I have class with private DataTable member.
I have function which initializes this member using another datatable as parameter. Like this.
Class.InitTable(byval SourceTable)
But if I clear SourceTable, table in the class is clear too. I'm passing SourceTable by value, not buy ref so question is how should I declare private member in my class or rewrite initializing function to separate source table and privaet member table

