Hi, If a method is marked condtional and has a parameter, is the parameter not evaluated if the condition is false?
for example (pseudo code):
===============
[Conditional : Debug]
public void DebugOut(string message)
{
xxxx
}
xxxx
DebugOut( GetSongName(1) )
==============
Does GetSongName still get called if Debug is false?
Thanks.
