You're mixing up languages. End Get, End Property etc are
VB.NET constructs.
In C# a property looks like this:
Code:
public string SelectedDate
{
get
{
return m_selectedDate;
}
set
{
m_selectedDate = value;
}
}
That's all that's necessary for a single property. What exactly are you trying to do??
Imar
---------------------------------------
Imar Spaanjaars
Everyone is unique, except for me.