GetChangeFlags() private method

private GetChangeFlags ( string guid ) : ChangeFlags
guid string
return ChangeFlags
示例#1
0
        private ChangeFlags GetChangeFlags()
        {
            string gUID = this.GetGUID();

            if (gUID == string.Empty)
            {
                return(ChangeFlags.None);
            }
            return(AssetServer.GetChangeFlags(gUID));
        }
        private ChangeFlags GetChangeFlags()
        {
            string      gUID = this.GetGUID();
            ChangeFlags result;

            if (gUID == string.Empty)
            {
                result = ChangeFlags.None;
            }
            else
            {
                result = AssetServer.GetChangeFlags(gUID);
            }
            return(result);
        }