Пример #1
0
        /// <summary>
        /// Gets the type symbol from type identifier.
        /// </summary>
        /// <param name="typeId">The type identifier.</param>
        private IDiaSymbol GetTypeFromId(uint typeId)
        {
            IDiaSymbol type;

            session.symbolById(typeId, out type);
            return(type);
        }
Пример #2
0
 /// <summary>
 /// Gets the type symbol from type identifier.
 /// </summary>
 /// <param name="typeId">The type identifier.</param>
 private IDiaSymbol GetTypeFromId(uint typeId)
 {
     return(session.symbolById(typeId));
 }