views:

212

answers:

1

Exact duplicate of this question.

When You get an error in .Net application we got an a Stack Trace. For example

    [ADOException: cannot open connection]
   NHibernate.Impl.SessionFactoryImpl.OpenConnection() +153
   NHibernate.AdoNet.ConnectionManager.GetConnection() +119
   NHibernate.Impl.SessionImpl.get_Connection() +42

What does those digits mean?

+1  A: 

The number indicates line of the error. If complied in release mode it refers to Microsoft Intermediate Language (MSIL) line in that function in the dll. If compiled in debug mode it refers to actual line in your code.

Artur...