How to check if a specific data exists in a multidimensional array C #

1

Work in a school that makes the control of students' frequency by digital, every time a student "hits" the finger is added to a code to a txt, if the student hit 1 time is recorded entry if he hit 2 Sometimes it is marked input and the output, I was able to read the text and save the data in the array AllAppointment [12,31, X] that in the serious case Month and day, now I need to check if each student hit once or twice in the day

I made a script to save data of a txt in a multidimensional array, each line of the txt contains a code that is saved in the array, I need to verify that this code appears 2 times in the same array index, for example: array [day , mes, code] but I do not know how to do this, obs: I also made a list to save the data in the database.

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using MetroFramework;
using MetroFramework.Forms;
using System.IO; //declarando a biblioteca de entrada e saída de arquivos
                 //a biblioteca IO

namespace Pj_FrquenciaObjetivo
{
    public partial class TratarDados : MetroFramework.Forms.MetroForm
    {
        public TratarDados()
        {
            InitializeComponent();
        }

        private void TratarDados_Load(object sender, EventArgs e)
        {
            try
            {
                int  qtMaxima = 0;
                int  Coutap = 0;


                //declarando a variavel do tipo StreamWriter 
                StreamReader x;

                //Colocando o caminho fisico 
                string Caminho = "C:\Apontamento\Apontamento.txt";

                //abrindo um arquivo texto
                x = File.OpenText(Caminho);
                while (x.EndOfStream != true)//quer dizer que não chegou no fim do  
                                             //arquivo
                {
                    string linha2 = x.ReadLine();

                    if (linha2 == "")
                    {
                        x.Close();
                        break;

                    }
                    qtMaxima++;

                }
                string[,,] TodosApontamento = new string[12,31, qtMaxima];

                x = File.OpenText(Caminho);
                string recuperaDia ="", recuperaMes ="";

                //enquanto nao retornar valor booleano true 
                while (x.EndOfStream != true)//quer dizer que não chegou no fim do  
                                             //arquivo
                {

                    //le conteúdo da linha
                    string linha = x.ReadLine();


                    //escreve na tela o conteúdo da linha
                    // Aqui eu devo salvar o texto em pedaços para
                    // que eu possa criar o obj apontamento
                    string status = linha.Substring(0, 2);
                    string dia = linha.Substring(2, 2);
                    string mes = linha.Substring(4, 2);
                    string ano = linha.Substring(6, 4);
                    string hora = linha.Substring(10, 2);
                    string minuto = linha.Substring(12, 2);
                    string segundo = linha.Substring(14, 2);
                    string matricula = linha.Substring(16, 5);

                    if (recuperaMes==mes && recuperaDia==dia)
                    {
                        Coutap = 0;
                    }
                    while (TodosApontamento[int.Parse(mes), int.Parse(dia), Coutap] !=null)
                    {
                        Coutap++;
                    }
                    TodosApontamento[int.Parse(mes),int.Parse(dia), Coutap] = linha;
                    Apontamento apm = new Apontamento(status, dia, mes, ano, hora, minuto, segundo, matricula);  
                    Controller.CarregaApontamentos(apm);

                  //  MessageBox.Show("Mes: "+int.Parse(mes)+" - Dia: "+ int.Parse(dia) + " - Arrey : "+Coutap +" - Conteudo: "+ TodosApontamento[int.Parse(mes), int.Parse(dia), Coutap]) ;
                    Coutap++;
                    recuperaDia = dia;
                    recuperaMes = mes;
                }

                //após sair do while, é porque leu todo o conteúdo, então
                //temos que fechar o arquivo texto que está aberto
                x.Close();
            }

            catch (Exception)
            {


                MetroMessageBox.Show(this, "Erro ao tentar adicionar na lista.", "Atenção", MessageBoxButtons.OK, MessageBoxIcon.Information);
            }

        }

        private void btn_voltar_Click(object sender, EventArgs e)
        {
            Home Hhome = new Home();
            this.Hide(); // use dessa maneira.
            Hhome.ShowDialog();
        }

        private void metroButton2_Click(object sender, EventArgs e)
        {

            MessageBox.Show("Apontamento criado com seucesso");
            MessageBox.Show("A quantidade de apontamentos é :" + Controller.L_apontamento1.Count());
        }
    }
}
    
asked by anonymous 29.06.2018 / 21:38

1 answer

0

Try this: do

using System.Diagnostics;
using System.Linq;

at the top of .cs.

Create a private class within the class TratarDados ,

private class Frequencia : IEquatable<Frequencia>
{
    DateTime Data { get; private set; }
    string Matricula { get; private set; }
    int QuantidadeBatidasCatraca { get; private set; }

    public Frequencia(DateTime data, string matricula) : this(data, matricula, 1)
    { }

    public Frequencia(DateTime data, string matricula, int batidas)
    {
        Data = data;
        Matricula = matricula;
        QuantidadeBatidasCatraca = batidas;
    }

    // Implementação do contrato.
    public bool Equals(Frequencia other)
    {
        return other.Data == Data &&
            other.Matricula == Matricula;
    }

    // Sobre-escreve o método padrão.
    public override int GetHashCode()
    {
        return Data.GetHashCode() ^ Matricula.GetHashCode();
    }
}   

In the method below, do the following:

private void TratarDados_Load(object sender, EventArgs e)
{
    // Lê todas as linhas do arquivo especificado.
    string[] linhas = 
        System.IO.File.ReadAllLines(@"c:\apontamento\apontamento.txt");

    // Declara uma lista de frequências.
    List<Frequencia> freqs = new List<Frequencia>();

    foreach (string linha in linhas)
    {
        string status = linha.Substring(0, 2);
        string dia = linha.Substring(2, 2);
        string mes = linha.Substring(4, 2);
        string ano = linha.Substring(6, 4);
        string hora = linha.Substring(10, 2);
        string minuto = linha.Substring(12, 2);
        string segundo = linha.Substring(14, 2);

        string matricula = linha.Substring(16, 5);
        DateTime data = 
            new DateTime(int.Parse(ano), int.Parse(mes), int.Parse(dia));

        Frequencia freq = new Frequencia(data, matricula);
        freqs.Add(freq);
    }

    // Manipula a lista de frequencias.
    var query =
        freqs
            .GroupBy(g => g)
            .Select(s => 
                new Frequencia(s.Key.Data, s.Key.Matricula, s.Count()))
            .OrderBy(o => o.Data)
            .ThenBy(t => t.Matricula);

    foreach (Frequencia f in query)
    {
        Debug.WriteLine("Data {0}, Matricula {1}, Frequencia {2}",
            f.Data, f.Matricula, f.QuantidadeBatidasCatraca);
    }
}

Debug in Visual Studio and, after execution, see the Output window.

    
29.06.2018 / 22:54