Browse by Tags

All Tags » CLR (RSS)

What Every Dev Must Know About Multithreaded Apps

Pay attention to this few lines of code: class Calculator { private static int m_TotalCount; public void DailyCut( int limit) { m_TotalCount = 0; while (m_TotalCount != 0 && m_TotalCount < limit) { // some process m_TotalCount++; } } // other...
More Posts