Guest User

Untitled

a guest
Feb 19th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. List<string> relationship = new List<string>() ;
  2. if (cnt.IsFamilyRel)
  3. {
  4. relationship.Add("Family");
  5. }
  6. if (cnt.IsWife)
  7. {
  8. relationship.Add("Wife");
  9. }
  10. if (cnt.IsSon)
  11. {
  12. relationship.Add("Son");
  13. }
  14.  
  15. ........
Add Comment
Please, Sign In to add comment