tuple

  1. Celso Calomeno

    Add txt file to a double list?

    If anyone can help me, I'm not able to convert the txt to include in the list string thePath = @"C:\Spectrum.txt"; string seq = File.ReadAllText(thePath); //read the numbers by line string[] text = Regex.Split(seq, "\t"); List<(double mz, double intensity)> ions = new List<(double mz...
  2. azhahes

    Tuples as key in Dictionary

    Is Dictionary<(int , int ), int> and Dictionary<Tuple<int , int>, int> are same?
Back
Top Bottom