Hi,
Could any one tell me what would be the C# equivalent for the following Delphi/Pascal statement:
< xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
IF ((a in [0,1,2]) or (b in [5..6])) THEN
BEGIN
END;
Hi,
Could any one tell me what would be the C# equivalent for the following Delphi/Pascal statement:
< xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />
IF ((a in [0,1,2]) or (b in [5..6])) THEN
BEGIN
END;
Equivalent C# statement
chrisortman
Damn... but thanx for your reply.
rfairlie
if(a==0 || a == 1 || a == 2) || (b >= 5 and b <=6)
{
}
Scott Coolness
See http://www.wintellect.com/powercollections/
and the MSDN article: http://msdn.microsoft.com/msdnmag/issues/03/09/NET/
for details.