End Google Ads 201810 - BS.net 01 --> Hi,

I was writing a validation function. Which is as follows

private void IsFolderValid1()
{
return false;
}

and somebody suggested me to write it in following way.

private void IsFolderValid1()
{
Get
{
return false;
}
}

Can u please explain me the reason. Whether it is right or wrong ?

Thanks