votes
what's the vb.Net counterpart of the following blocks in Csharp?
[code]public class NullableDateTimePicker : System.Windows.Forms.DateTimePicker { // Default Constructor public NullableDateTimePicker() : base() { base.Format = DateTimePickerFormat.Custom; NullValue = " ...
