private NativeAd _nativeAd;
private void InitAd()
{
// Create an instance of NativeAd
_nativeAd = new NativeAd(YOUR_SLOT_ID);
// Set the age
_nativeAd.CustomParams.Age = 23;
// Set the gender
_nativeAd.CustomParams.Gender = CustomParams.GenderEnum.Male;
}