Execute() public method

public Execute ( ) : void
return void
Ejemplo n.º 1
0
        public static void Main(string[] args)
        {
            string getTextureUrl = args[0];
            string texturesPath = args[1];

            List<string> textureIds = new List<string>();

            using (StreamReader sr = new StreamReader(texturesPath))
            {
                string line;

                while ((line = sr.ReadLine()) != null)
                    textureIds.Add(line);
            }

            TextureLoadTest test = new TextureLoadTest(getTextureUrl, textureIds);
            test.Execute();
        }
Ejemplo n.º 2
0
        public static void Main(string[] args)
        {
            string getTextureUrl = args[0];
            string texturesPath  = args[1];

            List <string> textureIds = new List <string>();

            using (StreamReader sr = new StreamReader(texturesPath))
            {
                string line;

                while ((line = sr.ReadLine()) != null)
                {
                    textureIds.Add(line);
                }
            }

            TextureLoadTest test = new TextureLoadTest(getTextureUrl, textureIds);

            test.Execute();
        }