S
Stefan Turalski \(stic\)
Hi,
I'm wondering if there is a way to send a method parametrs by ref when
DataTabel is a type of this value ?
I done some sort of select over DataTable columns, just by removing them
froma table is each of them isn't on a stirng[], but right no I have to do
it in a wat of:
1. passing DataTable to method (lets call it SelectOverDataTabel)
2. declare a local (in SelectOver...) DataTable, inicialize it with my value
3. doing all things on this local copy (removing.....)
4. and to the parent method send a local copy by return, sth like this
dtMyTable = clsLocalSQL.SelectOverDataTable( dtMyTable,
StringOfSelectedColumns)
Could I do it without closing DataTable in (object) and unpacking it in body
of my static procedure ??
I'm wondering if there is a way to send a method parametrs by ref when
DataTabel is a type of this value ?
I done some sort of select over DataTable columns, just by removing them
froma table is each of them isn't on a stirng[], but right no I have to do
it in a wat of:
1. passing DataTable to method (lets call it SelectOverDataTabel)
2. declare a local (in SelectOver...) DataTable, inicialize it with my value
3. doing all things on this local copy (removing.....)
4. and to the parent method send a local copy by return, sth like this
dtMyTable = clsLocalSQL.SelectOverDataTable( dtMyTable,
StringOfSelectedColumns)
Could I do it without closing DataTable in (object) and unpacking it in body
of my static procedure ??