07-17-2012, 14:42
hey whats up I have a little question:
is this
the same as this?
thank you
is this
Code:
if (File.Exists("blablabla"))
{
if (File.Exists("blobloblo"))
{
//do some serious shit
}
}
Code:
if (File.Exists("blablabla") && (File.Exists("blobloblo")))
{
//do some serious shit
}