FarmObject.isTray C# (CSharp) 메소드

isTray() 공개 메소드

public isTray ( string URL ) : bool
URL string
리턴 bool
    public bool isTray(string URL)
    {
        string[] split = URL.Split ("/"[0]);
        foreach(string s in split)
        {
            if (string.Compare(s, "tray", true) == 0)
            {

                return true;
            }
        }
        return false;
    }