ArrayTest.hello C# (CSharp) Method

hello() public static method

public static hello ( int tab ) : int
tab int
return int
    public static int hello( int[] tab )
    {
        return tab.Length + tab[ 0 ] + tab[ 1 ];
    }