亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? level.cs

?? 詳細講述了數據庫編程
?? CS
?? 第 1 頁 / 共 2 頁
字號:
		/// <summary>
		/// Returns a value indicating whether a specified <see cref="Level" /> 
		/// is greater than another specified <see cref="Level" />.
		/// </summary>
		/// <param name="l">A <see cref="Level" /></param>
		/// <param name="r">A <see cref="Level" /></param>
		/// <returns>
		/// <c>true</c> if <paramref name="l" /> is greater than 
		/// <paramref name="r" />; otherwise, <c>false</c>.
		/// </returns>
		/// <remarks>
		/// <para>
		/// Compares two levels.
		/// </para>
		/// </remarks>
		public static bool operator > (Level l, Level r)
		{
			return l.m_levelValue > r.m_levelValue;
		}

		/// <summary>
		/// Returns a value indicating whether a specified <see cref="Level" /> 
		/// is less than another specified <see cref="Level" />.
		/// </summary>
		/// <param name="l">A <see cref="Level" /></param>
		/// <param name="r">A <see cref="Level" /></param>
		/// <returns>
		/// <c>true</c> if <paramref name="l" /> is less than 
		/// <paramref name="r" />; otherwise, <c>false</c>.
		/// </returns>
		/// <remarks>
		/// <para>
		/// Compares two levels.
		/// </para>
		/// </remarks>
		public static bool operator < (Level l, Level r)
		{
			return l.m_levelValue < r.m_levelValue;
		}

		/// <summary>
		/// Returns a value indicating whether a specified <see cref="Level" /> 
		/// is greater than or equal to another specified <see cref="Level" />.
		/// </summary>
		/// <param name="l">A <see cref="Level" /></param>
		/// <param name="r">A <see cref="Level" /></param>
		/// <returns>
		/// <c>true</c> if <paramref name="l" /> is greater than or equal to 
		/// <paramref name="r" />; otherwise, <c>false</c>.
		/// </returns>
		/// <remarks>
		/// <para>
		/// Compares two levels.
		/// </para>
		/// </remarks>
		public static bool operator >= (Level l, Level r)
		{
			return l.m_levelValue >= r.m_levelValue;
		}

		/// <summary>
		/// Returns a value indicating whether a specified <see cref="Level" /> 
		/// is less than or equal to another specified <see cref="Level" />.
		/// </summary>
		/// <param name="l">A <see cref="Level" /></param>
		/// <param name="r">A <see cref="Level" /></param>
		/// <returns>
		/// <c>true</c> if <paramref name="l" /> is less than or equal to 
		/// <paramref name="r" />; otherwise, <c>false</c>.
		/// </returns>
		/// <remarks>
		/// <para>
		/// Compares two levels.
		/// </para>
		/// </remarks>
		public static bool operator <= (Level l, Level r)
		{
			return l.m_levelValue <= r.m_levelValue;
		}

		/// <summary>
		/// Returns a value indicating whether two specified <see cref="Level" /> 
		/// objects have the same value.
		/// </summary>
		/// <param name="l">A <see cref="Level" /> or <see langword="null" />.</param>
		/// <param name="r">A <see cref="Level" /> or <see langword="null" />.</param>
		/// <returns>
		/// <c>true</c> if the value of <paramref name="l" /> is the same as the 
		/// value of <paramref name="r" />; otherwise, <c>false</c>.
		/// </returns>
		/// <remarks>
		/// <para>
		/// Compares two levels.
		/// </para>
		/// </remarks>
		public static bool operator == (Level l, Level r)
		{
			if (((object)l) != null && ((object)r) != null)
			{
				return l.m_levelValue == r.m_levelValue;
			}
			else
			{
				return ((object) l) == ((object) r);
			}
		}

		/// <summary>
		/// Returns a value indicating whether two specified <see cref="Level" /> 
		/// objects have different values.
		/// </summary>
		/// <param name="l">A <see cref="Level" /> or <see langword="null" />.</param>
		/// <param name="r">A <see cref="Level" /> or <see langword="null" />.</param>
		/// <returns>
		/// <c>true</c> if the value of <paramref name="l" /> is different from
		/// the value of <paramref name="r" />; otherwise, <c>false</c>.
		/// </returns>
		/// <remarks>
		/// <para>
		/// Compares two levels.
		/// </para>
		/// </remarks>
		public static bool operator != (Level l, Level r)
		{
			return !(l==r);
		}

		#endregion Operators

		#region Public Static Methods

		/// <summary>
		/// Compares two specified <see cref="Level"/> instances.
		/// </summary>
		/// <param name="l">The first <see cref="Level"/> to compare.</param>
		/// <param name="r">The second <see cref="Level"/> to compare.</param>
		/// <returns>
		/// A 32-bit signed integer that indicates the relative order of the 
		/// two values compared. The return value has these meanings:
		/// <list type="table">
		///		<listheader>
		///			<term>Value</term>
		///			<description>Meaning</description>
		///		</listheader>
		///		<item>
		///			<term>Less than zero</term>
		///			<description><paramref name="l" /> is less than <paramref name="r" />.</description>
		///		</item>
		///		<item>
		///			<term>Zero</term>
		///			<description><paramref name="l" /> is equal to <paramref name="r" />.</description>
		///		</item>
		///		<item>
		///			<term>Greater than zero</term>
		///			<description><paramref name="l" /> is greater than <paramref name="r" />.</description>
		///		</item>
		/// </list>
		/// </returns>
		/// <remarks>
		/// <para>
		/// Compares two levels.
		/// </para>
		/// </remarks>
		public static int Compare(Level l, Level r)
		{
			// Reference equals
			if ((object)l == (object)r)
			{
				return 0;
			}

			if (l == null && r == null)
			{
				return 0;
			}
			if (l == null)
			{
				return -1;
			}
			if (r == null)
			{
				return 1;
			}

			return l.m_levelValue - r.m_levelValue;
		}

		#endregion Public Static Methods

		#region Public Static Fields

		/// <summary>
		/// The <see cref="Off" /> level designates a higher level than all the rest.
		/// </summary>
		public readonly static Level Off = new Level(int.MaxValue, "OFF");

		/// <summary>
		/// The <see cref="Emergency" /> level designates very severe error events. 
		/// System unusable, emergencies.
		/// </summary>
		public readonly static Level Emergency = new Level(120000, "EMERGENCY");

		/// <summary>
		/// The <see cref="Fatal" /> level designates very severe error events 
		/// that will presumably lead the application to abort.
		/// </summary>
		public readonly static Level Fatal = new Level(110000, "FATAL");

		/// <summary>
		/// The <see cref="Alert" /> level designates very severe error events. 
		/// Take immediate action, alerts.
		/// </summary>
		public readonly static Level Alert = new Level(100000, "ALERT");

		/// <summary>
		/// The <see cref="Critical" /> level designates very severe error events. 
		/// Critical condition, critical.
		/// </summary>
		public readonly static Level Critical = new Level(90000, "CRITICAL");

		/// <summary>
		/// The <see cref="Severe" /> level designates very severe error events.
		/// </summary>
		public readonly static Level Severe = new Level(80000, "SEVERE");

		/// <summary>
		/// The <see cref="Error" /> level designates error events that might 
		/// still allow the application to continue running.
		/// </summary>
		public readonly static Level Error = new Level(70000, "ERROR");

		/// <summary>
		/// The <see cref="Warn" /> level designates potentially harmful 
		/// situations.
		/// </summary>
		public readonly static Level Warn  = new Level(60000, "WARN");

		/// <summary>
		/// The <see cref="Notice" /> level designates informational messages 
		/// that highlight the progress of the application at the highest level.
		/// </summary>
		public readonly static Level Notice  = new Level(50000, "NOTICE");

		/// <summary>
		/// The <see cref="Info" /> level designates informational messages that 
		/// highlight the progress of the application at coarse-grained level.
		/// </summary>
		public readonly static Level Info  = new Level(40000, "INFO");

		/// <summary>
		/// The <see cref="Debug" /> level designates fine-grained informational 
		/// events that are most useful to debug an application.
		/// </summary>
		public readonly static Level Debug = new Level(30000, "DEBUG");

		/// <summary>
		/// The <see cref="Fine" /> level designates fine-grained informational 
		/// events that are most useful to debug an application.
		/// </summary>
		public readonly static Level Fine = new Level(30000, "FINE");

		/// <summary>
		/// The <see cref="Trace" /> level designates fine-grained informational 
		/// events that are most useful to debug an application.
		/// </summary>
		public readonly static Level Trace = new Level(20000, "TRACE");

		/// <summary>
		/// The <see cref="Finer" /> level designates fine-grained informational 
		/// events that are most useful to debug an application.
		/// </summary>
		public readonly static Level Finer = new Level(20000, "FINER");

		/// <summary>
		/// The <see cref="Verbose" /> level designates fine-grained informational 
		/// events that are most useful to debug an application.
		/// </summary>
		public readonly static Level Verbose = new Level(10000, "VERBOSE");

		/// <summary>
		/// The <see cref="Finest" /> level designates fine-grained informational 
		/// events that are most useful to debug an application.
		/// </summary>
		public readonly static Level Finest = new Level(10000, "FINEST");

		/// <summary>
		/// The <see cref="All" /> level designates the lowest level possible.
		/// </summary>
		public readonly static Level All = new Level(int.MinValue, "ALL");

		#endregion Public Static Fields

		#region Private Instance Fields

		private readonly int m_levelValue;
		private readonly string m_levelName;
		private readonly string m_levelDisplayName;

		#endregion Private Instance Fields
	}
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
一区二区三区四区在线免费观看| 久久福利资源站| 国产成人啪免费观看软件| 欧美精品第1页| 亚洲高清免费一级二级三级| 91丨porny丨国产| 亚洲一区二区四区蜜桃| 欧洲一区二区三区在线| 亚洲欧洲综合另类| 欧美精品一卡二卡| 日本不卡123| 亚洲精品在线观看网站| 国产成人免费在线| 亚洲精品五月天| 欧美日韩国产经典色站一区二区三区 | 一区二区视频在线看| 日本久久一区二区| 舔着乳尖日韩一区| 2014亚洲片线观看视频免费| 高清国产一区二区| 亚洲成人精品影院| 国产午夜精品理论片a级大结局 | 国产精品久久久久久久岛一牛影视 | 自拍av一区二区三区| 91超碰这里只有精品国产| 久久精品国产网站| 亚洲免费看黄网站| 欧美精品一区视频| 欧美在线免费观看亚洲| 国产精品影音先锋| 日韩主播视频在线| 亚洲欧洲在线观看av| 欧美一区二区免费视频| 91蜜桃免费观看视频| 蜜桃一区二区三区在线| 亚洲国产日韩精品| 日韩理论电影院| 欧美国产一区二区| 一区二区免费看| 久久久亚洲精品一区二区三区| 色婷婷精品久久二区二区蜜臂av| 国产中文字幕一区| 麻豆91精品视频| 免费欧美日韩国产三级电影| 亚洲国产精品嫩草影院| 中文字幕一区二区三区乱码在线| 欧美大片在线观看一区二区| 欧美理论片在线| 欧美激情中文字幕一区二区| 欧美天堂一区二区三区| 日日摸夜夜添夜夜添亚洲女人| 精品福利av导航| 国产精品亚洲一区二区三区妖精| 国产精品久久久久久久久果冻传媒| 亚洲人成7777| 国产欧美日韩在线看| 久久精品在线免费观看| 久久尤物电影视频在线观看| 久久综合色婷婷| 久久久久久久综合狠狠综合| 久久综合网色—综合色88| 精品国产一区二区在线观看| 精品少妇一区二区| 久久香蕉国产线看观看99| 久久综合资源网| 中文字幕一区二区三区不卡在线| 色综合色综合色综合| 精品在线免费观看| www.av亚洲| 欧美日本在线一区| 精品福利一区二区三区免费视频| 亚洲精品在线免费观看视频| 中文字幕成人av| 亚洲午夜在线电影| 国内一区二区在线| 欧美在线视频日韩| 精品黑人一区二区三区久久| 欧美国产成人精品| 首页欧美精品中文字幕| 高清免费成人av| 3d动漫精品啪啪| 亚洲精品免费在线播放| 蜜臀av性久久久久蜜臀aⅴ流畅 | 亚洲一二三四区| 国产麻豆成人精品| 91精品国产91综合久久蜜臀| 国产欧美精品一区| 久久99国产精品麻豆| 欧美亚洲动漫精品| 亚洲人成小说网站色在线| 九九精品一区二区| 欧美一区日韩一区| 洋洋av久久久久久久一区| 波多野结衣中文字幕一区二区三区| 欧美二区乱c少妇| 天天综合天天综合色| 欧美亚州韩日在线看免费版国语版| 国产人成亚洲第一网站在线播放| 日日骚欧美日韩| 日韩欧美中文字幕公布| 婷婷成人激情在线网| 欧美日韩三级在线| 亚洲不卡在线观看| 51久久夜色精品国产麻豆| 亚洲不卡av一区二区三区| 欧美精三区欧美精三区| 亚洲一二三四在线观看| 3d动漫精品啪啪一区二区竹菊| 丝袜脚交一区二区| 久久久久综合网| 成人久久视频在线观看| 中文字幕欧美一区| 欧美日本韩国一区二区三区视频| 亚洲va欧美va天堂v国产综合| 日本韩国一区二区三区视频| 亚洲精品老司机| 日韩欧美一级二级| 久久精品国产在热久久| 国产精品少妇自拍| 欧美色图第一页| 国产一区二区三区黄视频| **欧美大码日韩| 欧美日韩成人一区二区| 激情综合一区二区三区| 一色桃子久久精品亚洲| 555www色欧美视频| 99精品久久99久久久久| 日本视频一区二区三区| 国产午夜精品久久久久久免费视| 972aa.com艺术欧美| 麻豆精品在线视频| 亚洲另类春色校园小说| 日韩精品一区二区三区四区| 成人精品视频网站| 九一九一国产精品| 亚洲综合av网| 欧美国产精品专区| 精品少妇一区二区三区| 91豆麻精品91久久久久久| 国产一区二区在线看| 五月婷婷激情综合网| 亚洲欧美电影一区二区| 久久久综合视频| 亚洲精品在线观看视频| 亚洲一区二区三区自拍| 99re免费视频精品全部| 国产乱色国产精品免费视频| 日韩电影免费一区| 奇米四色…亚洲| 久久国产精品无码网站| 精品一区二区国语对白| 国产九九视频一区二区三区| 国产99精品在线观看| 一本色道久久综合亚洲aⅴ蜜桃| 成人久久久精品乱码一区二区三区| 老司机精品视频线观看86| 精品一区二区三区香蕉蜜桃 | 成人av电影观看| 色综合咪咪久久| 欧美日韩成人在线| www久久久久| 亚洲精品亚洲人成人网在线播放| 亚洲欧美日韩久久| 天堂影院一区二区| 久久国产尿小便嘘嘘| 成人福利视频在线| 欧美三级一区二区| 亚洲精品一区二区三区蜜桃下载| 欧美激情一区二区在线| 亚洲永久免费av| 国产一区二区视频在线| 色综合久久综合网97色综合| 欧美一区二区三区的| 亚洲三级理论片| 久久66热re国产| 欧美日韩亚洲综合一区 | 精品欧美乱码久久久久久 | 欧美一区二区三区喷汁尤物| 国产人妖乱国产精品人妖| 午夜日韩在线电影| 91网站最新地址| 国产欧美日韩另类一区| 天堂av在线一区| 欧美日韩一区成人| 亚洲欧美怡红院| 粉嫩一区二区三区性色av| 欧美肥胖老妇做爰| 亚洲不卡一区二区三区| 欧美性视频一区二区三区| 国产精品国产三级国产普通话三级 | 色欧美乱欧美15图片| 国产午夜精品一区二区三区嫩草| 视频一区视频二区中文字幕| 欧美色视频在线| 性做久久久久久久久| 欧美日韩国产精品自在自线| 亚洲韩国精品一区| 91精品一区二区三区久久久久久| 伊人开心综合网| 在线欧美日韩精品|