コード例 #1
0
ファイル: Partita.cs プロジェクト: braulioagr3/EditorDeGrafos
 public string[] elementos(int id)
 {
     string[] elementos;
     elementos    = new string[2];
     elementos[0] = MetodosAuxiliares.convierteRomano(id);
     foreach (string busca in this)
     {
         elementos[1] += "," + busca;
     }
     elementos[1] = elementos[1].Substring(1);
     return(elementos);
 }