public GivenThatIWantToUseFullPdbsToFindMethodInformation()
 {
     var stream = new FileStream(
         Path.Combine(AppContext.BaseDirectory, "TestAppWithFullPdbs.pdb"),
         FileMode.Open,
         FileAccess.Read);
     _pdbReader = new FullPdbReader(stream);
 }
Exemple #2
0
        public GivenThatIWantToUseFullPdbsToFindMethodInformation()
        {
            var stream = new FileStream(
                Path.Combine(AppContext.BaseDirectory, "TestAppWithFullPdbs.pdb"),
                FileMode.Open,
                FileAccess.Read);

            _pdbReader = new FullPdbReader(stream);
        }