Common.GuessObject C# (CSharp) Method

GuessObject() public static method

public static GuessObject ( int iRandSeed ) : Object
iRandSeed int
return Object
    public static Object GuessObject( int iRandSeed )
    {
        if ( iRandSeed > (Int32.MaxValue / 1.5) )
        {
            return null;
        }
        Object obj = iRandSeed;
        return obj;
    }
    public static Boolean argContains( String [] args, String str )