程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C#准確盤算年紀的辦法剖析

C#准確盤算年紀的辦法剖析

編輯:C#入門知識

C#准確盤算年紀的辦法剖析。本站提示廣大學習愛好者:(C#准確盤算年紀的辦法剖析)文章只能為提供參考,不一定能成為您想要的結果。以下是C#准確盤算年紀的辦法剖析正文


本文實例講述了C#斷定拜訪起源能否為搜刮引擎鏈接的辦法。分享給年夜家供年夜家參考。詳細剖析以下:

這段代碼經由過程獲得UrlReferrer斷定訪客能否來自經常使用的搜刮引擎,不是完整精確,可做參考

/// 斷定能否來自搜刮引擎鏈接
/// 能否來自搜刮引擎鏈接
public static bool IsSearchEnginesGet()
{
if (HttpContext.Current.Request.UrlReferrer == null)
{
return false;
}
string[] SearchEngine = { "谷歌", "yahoo", "msn", "百度", "sogou", "sohu", "sina", "163", "lycos", "tom", "yisou", "iask", "soso", "gougou", "zhongsou","bing" };
string tmpReferrer = HttpContext.Current.Request.UrlReferrer.ToString().ToLower();
for (int i = 0; i < SearchEngine.Length; i++)
{
if (tmpReferrer.IndexOf(SearchEngine[i]) >= 0)
{
return true;
}
}
return false;
}

願望本文所述對年夜家的C#法式設計有所贊助。

bsp;  throw new Exception("開端時光應小於或等與停止時光!");
            /*盤算出身日期到以後日期總月數*/
            int Months = endDateTime.Month - beginDateTime.Month + 12 * (endDateTime.Year - beginDateTime.Year);
            /*出身日期加總月數後,假如年夜於以後日期則減一個月*/
            int totalMonth = (beginDateTime.AddMonths(Months) > endDateTime) ? Months - 1 : Months;
            /*盤算全年*/
            int fullYear = totalMonth / 12;
            /*盤算整月*/
            int fullMonth = totalMonth % 12;
            /*盤算天數*/
            DateTime changeDate = beginDateTime.AddMonths(totalMonth);
            double days = (endDateTime - changeDate).TotalDays;
        }
    }
}

願望本文所述對年夜家的C#法式設計有所贊助。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved