In beamer, I guess, the separation space between the items from tableofcontents is stretchable:

Can you set it to a fixed value? e.g. to equal the value used in the itemize environment.
Partial answer:
\begin{minipage}{\textwidth}
\linespread{1.4}
\tableofcontents
\end{minipage}
Could someone patch this command with etoolbox and make it happen whenever typing only \tableofcontents? Thanks!
Here is a MWE (with default theme):
\documentclass{beamer}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}
\usepackage[english]{babel}
\usepackage{lipsum}
\title{Whatever Title Works}
\author{Remus M. Prunescu$^1$}
\institute{\tiny$^{1}$ Automation and Control Group, Department of Electrical Engineering, Technical University of Denmark (DTU)}
\begin{document}
\frame{
\maketitle
}
\frame{
\frametitle{Outline}
\begin{minipage}{\textwidth}
\linespread{1.4}
\tableofcontents
\end{minipage}
}
\section{Introduction}
\frame{
\frametitle{Random}
\lipsum[1]
}
\section{Project Description}
\frame{
\frametitle{Random}
\lipsum[2]
}
\end{document}

\tableofcontents, but\beamer@sectionintoc; see my answer below. – Gonzalo Medina Apr 09 '14 at 00:52