//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // // [....] // [....] // [....] //------------------------------------------------------------------------------ namespace System.Data { using System.ComponentModel; internal sealed class DataTableTypeConverter : ReferenceConverter { // converter classes should have public ctor public DataTableTypeConverter() : base(typeof(DataTable)) { } public override bool GetPropertiesSupported(ITypeDescriptorContext context) { return false; } } }