Wednesday, March 15, 2017

difference between ToString() and Convert.ToString()?

ToString() will throw exception for null values,Convert.ToString() will not throw any exception for null values.

No comments:

Post a Comment

Call a function in child component from parent component in React

Consider the following parent component class Parent extends React.Component { constructor(props) { super(props);         thi...