How can I \pause in the middle of a minted source code in Beamer?
\documentclass[12pt]{beamer}
\usepackage{minted}
...
\newminted{csharp}{bgcolor=gray!25,fontsize=\footnotesize,mathescape}
...
\begin{frame}[fragile]
\begin{csharpcode}
public class Objet
{
public int Attr1 { get; set; };
% I want to \pause here
public int Attr2 { get; set; };
}
\end{csharpcode}
\end{frame}
I want to show the audience just a part of the code in a first frame and the following in a second frame.
It's useful because if I show everything they will not be able to focus on what I am talking about in the first place.
