View Problem
Check your language appears on the langref.org site
Your language name should appear within the HTML found at the http:
Submit a new solution for cpp
There are 12 other solutions in additional languages (clojure, erlang, fantom, fsharp ...)
//langreg.org main page.
cpp C++/CLI .NET 2.0
HttpWebRequest^ httpReq = safe_cast<HttpWebRequest^>(WebRequest::Create(url)); httpReq->KeepAlive = false;
StreamReader^ httpStream = gcnew StreamReader(httpReq->GetResponse()->GetResponseStream());
String^ htmlPage = httpStream->ReadToEnd(); httpStream->Close();
Console::WriteLine("{0} {1} {2}", url, (htmlPage->IndexOf(url + language) > 0 ? "offers" : "does not offer"), language);
StreamReader^ httpStream = gcnew StreamReader(httpReq->GetResponse()->GetResponseStream());
String^ htmlPage = httpStream->ReadToEnd(); httpStream->Close();
Console::WriteLine("{0} {1} {2}", url, (htmlPage->IndexOf(url + language) > 0 ? "offers" : "does not offer"), language);
Submit a new solution for cpp
There are 12 other solutions in additional languages (clojure, erlang, fantom, fsharp ...)




