当前位置: 首页>>代码示例>>C#>>正文


C# Double.Cast方法代码示例

本文整理汇总了C#中System.Double.Cast方法的典型用法代码示例。如果您正苦于以下问题:C# Double.Cast方法的具体用法?C# Double.Cast怎么用?C# Double.Cast使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Double的用法示例。


在下文中一共展示了Double.Cast方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: GetSummonerNames

 /// 11.)
 public async Task<String[]> GetSummonerNames(Double[] summonerIds)
 {
     int Id = Invoke("summonerService", "getSummonerNames", new object[] { summonerIds.Cast<object>().ToArray() });
     while (!results.ContainsKey(Id))
         await Task.Delay(10);
     String[] result = new String[results[Id].GetTO("data").GetArray("body").Length];
     for (int i = 0; i < results[Id].GetTO("data").GetArray("body").Length; i++)
     {
         result[i] = (String)results[Id].GetTO("data").GetArray("body")[i];
     }
     results.Remove(Id);
     return result;
 }
开发者ID:chienhao10,项目名称:Volibot-Garena,代码行数:14,代码来源:PublicMethods.cs

示例2: GetSummonerIcons

 /// 16.)
 public async Task<String> GetSummonerIcons(Double[] summonerIds)
 {
     int Id = Invoke("summonerService", "getSummonerIcons", new object[] { summonerIds.Cast<object>().ToArray() });
     while (!results.ContainsKey(Id))
         await Task.Delay(10);
     String result = (String)results[Id].GetTO("data")["body"];
     results.Remove(Id);
     return result;
 }
开发者ID:chienhao10,项目名称:Volibot-Garena,代码行数:10,代码来源:PublicMethods.cs

示例3: Matrix2ImageMax

        /// <summary>
        /// Converts array elements into pixel values (values normalized using maximum element)
        /// </summary>
        /// <param name="Matrix">Array</param>
        /// <returns>Greyscale image</returns>
        public Bitmap Matrix2ImageMax(Double[,] Matrix)
        {
            Bitmap img = new Bitmap(Matrix.GetLength(0), Matrix.GetLength(1));

            Double max = Matrix.Cast<Double>().Max();

            for (int i = 0; i < Matrix.GetLength(0); i++)
            {
                for (int j = 0; j < Matrix.GetLength(1); j++)
                {

                    //Double a = 255 / Math.Log10(1 + max);

                    //int value = (int)(a * Math.Log10(1 + Matrix[i, j]));

                    int value = (int)(Matrix[i, j] / max);

                    if (value > 255) value = 255;

                    Color p = Color.FromArgb(255, value, value, value);

                    img.SetPixel(i, j, p);
                }
            }

            return img;
        }
开发者ID:litdev1,项目名称:LitDev,代码行数:32,代码来源:FIP.cs


注:本文中的System.Double.Cast方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。