Mono.Cecil.Pdb.PdbWriterProvider.HasPortablePdbSymbols C# (CSharp) Method

HasPortablePdbSymbols() static private method

static private HasPortablePdbSymbols ( ModuleDefinition module ) : bool
module ModuleDefinition
return bool
        static bool HasPortablePdbSymbols(ModuleDefinition module)
        {
            return module.symbol_reader != null && module.symbol_reader is PortablePdbReader;
        }