SuperMap.WindowsPhone.Mapping.OfflineStorage.BuildPath C# (CSharp) Method

BuildPath() private method

${WP_mapping_OfflineStorage_method_BuildPath_D}
private BuildPath ( int width, int height, double resolution, int level, int column, int row ) : string
width int
height int
resolution double
level int
column int
row int
return string
        private string BuildPath(int width, int height, double resolution, int level, int column, int row)
        {
            string path = string.Empty;
            if (level > -1)
            {
                path = RootName + "\\" + width + "x" + height + "\\" + level + "\\" + column + "\\" + row;
            }
            else
            {
                path = RootName + "\\" + width + "x" + height + "\\" + resolution + "\\" + column + "\\" + row;
            }
            return path;
        }