//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\
// PLEASE DO NOT EDIT WITHOUT THE EXPLICIT CONSENT OF THE AUTHOR! \\
//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\//\\
using System;
using Ilog.Language.Tools;
/**
* This class is a test for the Ilog.Language.Tools.Misc class.
*
* @version Last modified on Fri May 06 16:38:35 2005 by hak
* @author Hassan Aït-Kaci
* @copyright © 2000 ILOG, S.A.
*/
public class MiscTest
{
public static void Main (String[] args)
{
Console.WriteLine("Misc.Substring(\"{0}\",{1},{2}) = {3}",
args[0],
args[1],
args[2],
Misc.Substring(args[0],
Int32.Parse(args[1]),
Int32.Parse(args[2])));
}
}