System.Data.DataTable.RowDiffIdUsageSection.Assert C# (CSharp) Method

Assert() private method

private Assert ( string message ) : void
message string
return void
            internal static void Assert(string message)
            {
#if DEBUG
                // this code asserts scope was created, but it does not assert that the table was included in it
                // note that in case of DataSet, new tables might be added to the list in which case they won't appear in s_usedTables.
                Debug.Assert(s_usedTables != null, message);
#endif
            }
        }
DataTable.RowDiffIdUsageSection