New Product Launch - BoldDesk !
Introducing help desk ticketing software.
New Product LaunchBoldDesk: Help desk ticketing software starts at $10 for 3 agents.
Try it for free.
dt.Columns.Add("Salary",typeof(decimal));
dt.Columns["Salary"].AllowDBNull = false; |
private decimal? samplevalue;
public decimal? SampleValue
{
get
{
return this.samplevalue;
}
set
{
this.samplevalue = value;
}
} |