cómo convertir C # a C ++ [cerrado]

¿Podría alguien ayudarme a convertir C # a C ++? Aquí hay un ejemplo:

using System;
using System.Net;
using System.Text;
using System.IO;
using System.Threading;
namespace read_website
{
    class Program
    {
        static void Main(string[] args)
        {
            while (true)
            {
                DownloadString("http://www.xxx.asp");
                Thread.Sleep(100);//update every 100 millisecoand 
            }
        }

        public static void DownloadString(string address)
        {           
            WebClient client = new WebClient();
            string website = client.DownloadString(address);
            get_Current_X1_value(website);
        }

        static void get_Current_X1_value(string web)
        {
            int x = web.IndexOf("Current X1 value:");
            string part1 = web.Substring(x, 100);
            string[] array = part1.Split('>', '<');
            for (int i = 0; i < array.Length; i++)
            {
                if (array[i].Contains("Current X1 value:"))
                    Console.Write(array[i]);
                if (array[i].Contains("W"))
                    Console.WriteLine(array[i]);
            }

        }
    }
}

En realidad, como es complicado mezclar C # y C ++ en Unix, estoy tratando de convertir C # a C ++, por lo que cualquier ayuda será muy apreciada.

Agradeciendo de antemano su respuesta, ayuda y tiempo,

Respuestas a la pregunta(10)

Su respuesta a la pregunta