System.Data.SQLite

Check-in [7d123e6752]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Minor addition to doc comments.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 7d123e67525a41f55eb33be9ff8de735660e85a0
User & Date: mistachkin 2013-06-26 04:27:13.063
Context
2013-06-26
04:52
Fixup external MSDN documentation links for the referenced generic interfaces. check-in: 0897c71426 user: mistachkin tags: trunk
04:27
Minor addition to doc comments. check-in: 7d123e6752 user: mistachkin tags: trunk
04:23
Add generic variants of the SQLiteModuleEnumerable and SQLiteVirtualTableCursorEnumerator classes. check-in: 7da399e402 user: mistachkin tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to System.Data.SQLite/SQLiteModuleEnumerable.cs.
133
134
135
136
137
138
139
140

141
142
143
144
145
146
147
        {
            get { CheckDisposed(); return endOfEnumerator; }
        }

        ///////////////////////////////////////////////////////////////////////

        /// <summary>
        /// Closes the virtual table cursor.

        /// </summary>
        public virtual void Close()
        {
            // CheckDisposed();

            if (enumerator != null)
                enumerator = null;







|
>







133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
        {
            get { CheckDisposed(); return endOfEnumerator; }
        }

        ///////////////////////////////////////////////////////////////////////

        /// <summary>
        /// Closes the virtual table cursor.  This method must not throw any
        /// exceptions.
        /// </summary>
        public virtual void Close()
        {
            // CheckDisposed();

            if (enumerator != null)
                enumerator = null;
940
941
942
943
944
945
946
947

948
949
950
951
952
953
954
                return enumerator.Current;
            }
        }

        ///////////////////////////////////////////////////////////////////////

        /// <summary>
        /// Closes the virtual table cursor.

        /// </summary>
        public override void Close()
        {
            // CheckDisposed();

            if (enumerator != null)
                enumerator = null;







|
>







941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
                return enumerator.Current;
            }
        }

        ///////////////////////////////////////////////////////////////////////

        /// <summary>
        /// Closes the virtual table cursor.  This method must not throw any
        /// exceptions.
        /// </summary>
        public override void Close()
        {
            // CheckDisposed();

            if (enumerator != null)
                enumerator = null;