I want to inherit the DevExpress ComboBoxEdit control, and I wonder if my class calls the same as the DevExpress class, bad practice.
Here's the declaration of the derived class:
using System;
using System.Collections.Generic;
using System.Text;
namespace MyApplication.Components
{
public class ComboBoxEdit : DevExpress.XtraEditors.ComboBoxEdit
{
}
}
Should I rename MyApplication.Components.ComboBoxEdit to something like MyComboBoxEdit, for example?
source
share