, , . , number. , . - "". , , , ( "" )
class Program
{
static void Main(string[] args)
{
string message = ';'.ToString();
int number = 6;
object obj = (object)(new t());
int? nullable = (int?)12;
}
class t
{ }
}
. , int '12' int?. , " ", .
source
share