wasCSharpSQLite – Rev 1

Subversion Repositories:
Rev:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace System
{
    public interface ICloneable
    {
        object Clone();
    }
}