示例#1
0
        public static string displayFeelsLike(string feelsLike, bool isGrid = false)
        {
            String text = "Feels Like : ";

            if (isGrid)
            {
                text = "";
            }
            return(text + ApiUtilities.convertKelvenToCelcius(feelsLike) + "° C");
        }
示例#2
0
        public static string displayTemp(string temp, bool isGrid = false)
        {
            String text = "Temperature : ";

            if (isGrid)
            {
                text = "";
            }
            return(text + ApiUtilities.convertKelvenToCelcius(temp) + "° C");
        }