public GrafoM(bool pEsDirigido, int pnNodos, bool pPonderado)
		{

			MAX_VERTICES = pnNodos;
			esDirigido_Renamed = pEsDirigido;
			esPonderado = pPonderado;
			nodos = new List<Nodo<N>>();
//JAVA TO C# CONVERTER NOTE: The following call to the 'RectangularArrays' helper class reproduces the rectangular array initialization that is automatic in Java:
//ORIGINAL LINE: matrizNodos = new ArrayList[MAX_VERTICES][MAX_VERTICES];
			matrizNodos = RectangularArrays.ReturnRectangularArrayListArray(MAX_VERTICES, MAX_VERTICES);
			mapaNodos = new Dictionary<>();
			tamanoGrafo = 0;

		}