switch (GetUserGender()) {
gender = AdjoeGender.MALE;
gender = AdjoeGender.FEMALE;
gender = AdjoeGender.UNKNOWN;
// note that if you don't know the user's exact birthday, the year is already enough
DateTime birthday = GetUserBirthday();
string source = ""; // where did you get the user's profile information from? "facebook", "google", ...
// send the profile information to adjoe
Adjoe.SetProfile(source, gender, birthday);