Exemple #1
0
    public void Main(int qual)
    {
        LDDE <String> Tudo = new LDDE <String>();


        // Mostrar no Painel do Canvas Principal

        if (qual == 1)
        {
            Tudo.Inserir(nome.text);
            TextoMostrado.text = nome.text;

            if (Painel2 != null)
            {
                bool isActive = Painel2.activeSelf;
                Painel2.SetActive(!isActive);
            }
        }
        if (qual == 2)
        {
            TextoMostrado.text = Tudo.Busca(busca.text);

            if (Painel3 != null)
            {
                bool isActive = Painel3.activeSelf;
                Painel3.SetActive(!isActive);
            }
        }
        if (qual == 3)
        {
            Tudo.Remover("May");
            TextoMostrado.text = "Cancelado";
        }

        if (qual == 4)
        {
            bool isActive = Painel2.activeSelf;
            Painel2.SetActive(!isActive);
        }



        /*
         * Console.Write("Digite seu nome: ");
         * String nome = Console.ReadLine();
         *
         * Tudo.Inserir(nome);
         *
         * Tudo.Inserir("Lilian");
         * Tudo.Inserir("Patricia");
         * Tudo.Inserir("Karin");
         *
         * Tudo.Imprimir();
         * Tudo.Busca("Lilian");
         * Tudo.Remover("Patricia");
         *
         * Tudo.Gravar();
         * Tudo.Imprimir();
         */
    }
Exemple #2
0
        static void Main(string[] args)
        {
            LDDE <String> Tudo = new LDDE <String>();


            Console.Write("Digite seu nome: ");
            String nome = Console.ReadLine();

            Tudo.Inserir(nome);

            Tudo.Inserir("Lilian");
            Tudo.Inserir("Patricia");
            Tudo.Inserir("Karin");

            Tudo.Imprimir();
            Tudo.Busca("Lilian");
            Tudo.Remover("Patricia");

            Tudo.Gravar();
            Tudo.Imprimir();
        }
    public void Main(int qual)
    {
        LDDE <String> Tudo = new LDDE <String>();


        // Mostrar no Painel do Canvas Principal

        if (qual == 1)
        {
            TextoMostrado.text = "Nome: \n" + nome.text + "\n\nE-mail: \n" + email.text + "\n\nVaga Desejada: \n" + vagadesejada.text;
            Tudo.Inserir(nome.text);
            if (Painel2 != null)
            {
                bool isActive = Painel2.activeSelf;
                Painel2.SetActive(!isActive);
            }
        }
        if (qual == 2)
        {
            // string aqui = @"c:\temp\Curriculum.txt";
            string aqui = @"/sdcard/Curriculum.txt";
            string conteudo;
            string auxs = "";
            int    aux  = 0;
            using (StreamReader sr = File.OpenText(aqui))



                while ((conteudo = sr.ReadLine()) != null)
                {
                    nome.text  = conteudo;
                    email.text = conteudo;

                    if (aux == 0)
                    {
                        auxs = conteudo;
                    }

                    if (aux == 1)
                    {
                        nome.text = auxs;
                    }
                    aux++;
                }

            if ((Tudo.Busca(busca.text)).Equals(nome.text))
            {
                TextoMostrado.text = busca.text + "\nInscrito na Vaga: " + vagadesejada.text;
            }
            else
            {
                TextoMostrado.text = "Inscrição não Efetuada.";
            }


            if (Painel3 != null)
            {
                bool isActive = Painel3.activeSelf;
                Painel3.SetActive(!isActive);
            }
        }

        if (qual == 3)
        {
            //Tudo.Remover("May");
            Tudo.Remover(nome.text);
            TextoMostrado.text = "Inscrição Cancelada";
        }

        if (qual == 4)
        {
            bool isActive = Painel2.activeSelf;
            Painel2.SetActive(!isActive);
        }
    }