class Sample
{
public int Length
{
set
{
Length = value;
}
}
}
class Sample
{
int len;
public int Length
{
get
{
return len;
}
set
{
len = value;
}
}
}
class Sample
{
int len;
public int Length
{
WriteOnly set
{
len = value;
}
}
}
class Sample
{
int len;
public int Length
{
set
{
len = value;
}
}
}
class Sample
{
int len;
public int Length
{
set
{
len = value;
}
}
}
int i = 20 ; for( ; ; ) { Console.Write(i + " "); if (i >= -10) i -= 4; else break; }
byte a = 11, b = 22, c;
Comments
There are no comments.Copyright ©CuriousTab. All rights reserved.