Seshadri M

Seshadri M

  • NA
  • 69
  • 16.6k

Attributes implemented in class through another class

Oct 14 2017 10:30 AM
//I have two class one defination and other attributes.
 
public class names
{
int id;
string name;
 
public class address
{
string address1;
string address2; 
 
 
//I need to implement this for one employee and mutliple address
// can please provide logic and example
 

Answers (2)