Hi,
Sir, How can I validate integer value which inputs from console in set method??????
plz help me...
namespace validation
{
public class role
{
private string role_name;
private int role_id;
public int Role_id
{
get { return role_id; }
set { role_id = value;}
}
public string Role_name
{
get { return role_name; }
set { role_name = value; }
}
}
}