The problem is the following: I call the Users.Get method:
var user = vk.Users.Get(new long[] { 11111111 }, ProfileFields.Online).FirstOrDefault();
There are no problems with this, but I need not only Online, how can I convey several fields? I tried it, but it does not help:
var user = vk.Users.Get(new long[] { 11111111 }, ProfileFields.Online).FirstOrDefault(); var user1 = vk.Users.Get(new long[] { 11111111 }, ProfileFields.HomeTown).FirstOrDefault();
Maybe somehow you can pass at once an array of type ProfileFields?
ProfileFields.Online | ProfileFields.HomeTownProfileFields.Online | ProfileFields.HomeTown- Alexander Petrov