using System;
///
/// Main method.
/// This sample is useless.
///
class SayHello {
///
/// This is the Main method for the class and is
/// the execution starting point for our application.
/// Please note that args
/// is a array of strings.
///
/// params for Main method
/// Returns a value depending on how the program
/// was called.
//We want Main to return an integer.
public static int Main(string[] args) {
if (args.Length > 0) {
return (0);
}
return (1);
}
}