U
umop apisdn
I have a bunch of properties like this:
private Single _Amount;
public Single Amount
{
get { return _Amount; }
set { _Amount = value; }
}
Now I need to change all the Singles to Doubles. So that I don't have to do
this again, how can I define a type
MyAmountType = typeof(Double)
so that I can declare
private MyAmountType _Amount;
public MyAmountType Amount
{
get { return _Amount; }
set { _Amount = value; }
}
?
Thanks for any help,
Rob
private Single _Amount;
public Single Amount
{
get { return _Amount; }
set { _Amount = value; }
}
Now I need to change all the Singles to Doubles. So that I don't have to do
this again, how can I define a type
MyAmountType = typeof(Double)
so that I can declare
private MyAmountType _Amount;
public MyAmountType Amount
{
get { return _Amount; }
set { _Amount = value; }
}
?
Thanks for any help,
Rob