[Mono-dev] Are these bugs/features going to be fixed/released in the next builds?

marcos b marcosb at internet.com.uy
Wed Sep 10 10:55:22 EDT 2008


All of these tests succeed in Microsoft .net runtime, but none does using
mono.


        [Test]
        public void TypedDataSetsWithBinaryRemotingFormat()
        {
            DataSet1 ds = new DataSet1();
            ds.RemotingFormat = SerializationFormat.Binary;

            BinaryFormatter f = new BinaryFormatter();
            MemoryStream ms = new MemoryStream();
            f.Serialize(ms, ds);
        }

        [Test]
        public void RemotingCustomErrorsModeConfiguration()
        {
            RemotingConfiguration.CustomErrorsMode = CustomErrorsModes.Off;
        }

        [Test]
        public void NullableConverterConstructor()
        {
            Type t = typeof(int?);
            NullableConverter nullableConverter;
            nullableConverter = new NullableConverter(t);
        }

        [Test]
        public void AdoAdapterUpdate()
        {
            using (SqlConnection cn = GetConnection())
            {
                SqlDataAdapter da = new SqlDataAdapter("Select * from
PackageLink", cn);

                DataTable dt = new DataTable();
                da.Fill(dt);

                DbCommandBuilder builder = new SqlCommandBuilder(da);

                dt.Rows[0]["Description"] = "changed";
                da.Update(dt);
            }
        }

Thanks in advance for any comment.
-- 
View this message in context: http://www.nabble.com/Are-these-bugs-features-going-to-be-fixed-released-in-the-next-builds--tp19414773p19414773.html
Sent from the Mono - Dev mailing list archive at Nabble.com.



More information about the Mono-devel-list mailing list