class Sample
{
int len;
public int Length
{
get
{
return len;
}
}
}
class Sample
{
public int Length
{
get
{
return Length;
}
}
}
class Sample
{
int len;
public int Length
{
get
{
return len;
}
set
{
len = value;
}
}
}
class Sample
{
int len;
public int Length
{
Readonly get
{
return len;
}
}
}
class Sample
{
int len;
public int Length
{
get
{
return len;
}
}
}
if(s1 = s2)
if(s1 == s2)
int c; c = s1.CompareTo(s2);
if( strcmp(s1, s2) )
if (s1 is s2)
int[] intMyArr = {11, 3, 5, 9, 4};
Comments
There are no comments.Copyright ©CuriousTab. All rights reserved.