コード例 #1
0
ファイル: StartUp.cs プロジェクト: andre197/SimpleExercises
        /// <summary>
        /// Creates adjacency matrix from the passed string by splitting it to char array
        /// </summary>
        /// <param name="vertecies">string which will be converted to char array</param>
        private static void MatrixCreator(string vertecies)
        {
            CreateMatrix matrix = new CreateMatrix();

            matrix.CreateMatrixVertex(vertecies);
        }