Command += "?";
for (auto Iter : Arg) {
std::string temp;
if (Iter.second.index() == 0) temp = std::get<0>(Iter.second);
else temp = std::to_string(std::get<Iter.second.index()>(Iter.second));
Command += Iter.first + "=" + temp + "&";
}
std::cout << Command << "\n\n";
}
Нельзя так делать потому что
Обсуждают сегодня