-
Notifications
You must be signed in to change notification settings - Fork 13
/
Program.cs
40 lines (37 loc) · 1.23 KB
/
Program.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
using System;
using System.IO;
using System.Collections.Generic;
namespace Fazer_Codigo_CFGCLI
{
class Program
{
static void Main(string[] args)
{
Modulo prog = new Modulo();
string textofinal = "";
Console.WriteLine(prog.getValueArray());
for (int i = 0; i < prog.getValueArray(); i++) // colocando os comandos corretamente
{
prog.Identificao(i);
if (i > 233) // Codigo dá erro apartir daqui, ele não consegue reconhecer totalmente
{
if (i < prog.getValueArray())
{
prog.setLista(i);
}
}
}
for (int i = 0; i < prog.getValueArray(); i++) // Adicionando valores
{
if (i < prog.getValueArray())
{
prog.setListaValue(i);
}
}
textofinal = prog.getLista();
File.WriteAllText("Arquivo_Com_Comandos.txt", textofinal); //Gerando arquivo com a informação
Console.WriteLine(textofinal);
Console.ReadKey();
}
}
}