System.Xml.DataPointer.ColumnCount C# (CSharp) Méthode

ColumnCount() private méthode

private ColumnCount ( DataRow row, bool fAttribute, bool fNulls ) : int
row System.Data.DataRow
fAttribute bool
fNulls bool
Résultat int
        private int ColumnCount(DataRow row, bool fAttribute, bool fNulls)
        {
            DataColumn c = null;
            int count = 0;
            while ((c = NextColumn(row, c, fAttribute, fNulls)) != null)
            {
                count++;
            }
            return count;
        }