161.
                                True of false: every type automatically gets a comparison method named CompareTo that gets used for sorting.
                                
                                    View Description
                                    
                                        
                                    
                                
                                
                                    
                            
                        In order to be sorted, a type must supply the comparison code. The comparison code is not automatically generated by the compiler nor is it inherited from the object class. One way to supply the comparison code is to implement the IComparable interface and code its CompareTo method.