Hi I have an array and was wondering how to implemtn Array.Sort() to best help my situation... The array holds the record index from a table. So if i query the db, get the record set, the "riskz" object works like
riskz[0].columnName
that will return the first record from the table and the value in the columnName.
The risks[] has upwards of 13 items.
I need to sort the array somehow so that i can set variable to the columns of information where.. say.. columnName value=4
Simply put, i'm looking to determine what index in the array has columnName=4 (and there will always be only one record)
Am i explaining myself correctly? Thanks for the help.
and i need to set the values of the record for
riskz[0].columnName
that will return the first record from the table and the value in the columnName.
The risks[] has upwards of 13 items.
I need to sort the array somehow so that i can set variable to the columns of information where.. say.. columnName value=4
Simply put, i'm looking to determine what index in the array has columnName=4 (and there will always be only one record)
Am i explaining myself correctly? Thanks for the help.
and i need to set the values of the record for