I have an application that I am making an have run into a place where I got stuck. My problem is this: how can I create a ratio with a datatable.
Ex:
My Table:
|gh | gh | tf | tf|
|tf | tf | tf | tf|
|gh | gh | tf | tf|
My output:
4 gh:8 tf
Anything could be in the table, so I was hoping to use Linq to determine the ratio .. but didnt know how to find out all the diffrent results in the table.
Maybe something like this would work?