Tuesday, May 9, 2017

Partial Classes

Partial classes concept was introduced in .NET 2.0 which allows us to split business logic in multiple files with same class name but with a "partial" keyword.

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...