RatioMaster_source.RM.GetMax C# (CSharp) Method

GetMax() static private method

static private GetMax ( int p1, int p2 ) : int
p1 int
p2 int
return int
        internal static int GetMax(int p1, int p2)
        {
            if (p1 > p2) return p1;
            else return p2;
        }