W
Winista
I have a property in my class like..
Int32 iVal;
public String Val
{
get{return iVal;}
set{this.iVal = value;}
}
Strange that compiler does not pick it up as error because of type mismatch.
Int32 iVal;
public String Val
{
get{return iVal;}
set{this.iVal = value;}
}
Strange that compiler does not pick it up as error because of type mismatch.