wasCSharpSQLite – Blame information for rev

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 namespace System
2 {
3 public sealed class DBNull
4 {
5 // Fields
6 public static readonly DBNull Value = new DBNull ();
7  
8 // Private constructor
9 private DBNull ()
10 {
11 }
12  
13 public override string ToString ()
14 {
15 return String.Empty;
16 }
17 }
18 }