get row data in datatable

Code Example - get row data in datatable

                
                        Javascript12345var table = $('#example').DataTable(); $('#example tbody').on( 'click', 'tr', function () {    console.log( table.row( this ).data() );} );
                    
                
 

datatable get row data

                        
                                var table = $('#example').DataTable();

$('#example tbody').on( 'click', 'tr', function () {
    console.log( table.row( this ).data() );
} );
                            
                        
 

how to get value of specific row of datatable csharp

                        
                                double otherNumber = dt.Rows[i].Field<double>("DoubleColumn");