I would like to open the source code of a large code base and will not be able to really verify all the source data manually before doing this.
It seems that MS will edit some text from the comments in the source code that they released for .NET BCL.
Here is an example from System.Lazy<T> :
if (boxed == null || Interlocked.CompareExchange(ref m_boxed, boxed, null) != null) {
Pay attention to the text ---- . It seems the word race can be removed.
There are many other examples in my code.
How were these calculations calculated? Is this a simple string match?
open-source bcl redaction
Drew Noakes Jun 02 '15 at 11:46 2015-06-02 11:46
source share