本文整理汇总了C#中System.Int32.CompareTo方法的典型用法代码示例。如果您正苦于以下问题:C# Int32.CompareTo方法的具体用法?C# Int32.CompareTo怎么用?C# Int32.CompareTo使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Int32
的用法示例。
在下文中一共展示了Int32.CompareTo方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Print
public void Print()
{
System.Int32 i = new System.Int32();
i = 23;
Console.WriteLine(i.GetHashCode());
Console.WriteLine(i.GetType());
Console.WriteLine(i.GetTypeCode());
Console.WriteLine(i.ToString());
if (i.CompareTo(20) < 0)
Console.WriteLine("{0} < 20", i);
else if (i.CompareTo(20) == 0)
Console.WriteLine("i equals 20");
else
Console.WriteLine("i > 20");
Console.WriteLine(System.Int32.MinValue);
Console.WriteLine(System.Int32.MaxValue);
Console.WriteLine(System.Double.Epsilon);
Console.WriteLine(System.Double.PositiveInfinity);
Console.WriteLine(System.Double.NegativeInfinity);
Console.WriteLine(System.Boolean.FalseString);
Console.WriteLine(System.Boolean.TrueString);
Console.WriteLine(System.Char.IsDigit('1'));
Console.WriteLine(System.Char.IsLetter('9'));
Console.WriteLine(System.Char.IsWhiteSpace("naynish chaughule", 7));
Console.WriteLine(System.Char.IsPunctuation('?'));
//parsing
double d = System.Double.Parse("90.35");
Console.WriteLine(d);
System.Int64 longVar = Convert.ToInt64("43654703826562");
Console.WriteLine(longVar);
Console.WriteLine(System.Guid.NewGuid());
System.DateTime dt = new DateTime(2012, 6, 04);
Console.WriteLine(dt.ToLongDateString());
Console.WriteLine(DateTime.Now.ToLongTimeString());
Console.WriteLine(dt.DayOfWeek);
Console.WriteLine(dt.AddMonths(5).ToLongDateString());
Console.WriteLine("{0} {1} {2}", dt.Date, dt.DayOfYear, dt.IsDaylightSavingTime());
TimeSpan ts = new TimeSpan(24, 30, 30);
Console.WriteLine(dt.Add(ts).ToLongDateString());
Console.WriteLine(ts.Subtract(new TimeSpan(2,30, 45)));
NumericsDemo();
WorkingWithStrings();
}
示例2: Compare
private static Int32 Compare(Int32 value1, String value2)
{
if (String.IsNullOrEmpty(value2))
return value1.CompareTo(0);
if (Boolean.TrueString.Equals(value2, StringComparison.OrdinalIgnoreCase))
return value1 >= MinTrueInt ? 0 : -1;
if (Boolean.FalseString.Equals(value2, StringComparison.OrdinalIgnoreCase))
return value1 >= MinTrueInt ? +1 : 0;
Int32 parsedIntegerValue;
if (Int32.TryParse(value2, out parsedIntegerValue))
return value1.CompareTo(parsedIntegerValue);
Single parsedSingleValue;
if (Single.TryParse(value2, out parsedSingleValue))
return ((Single)value1).CompareTo(parsedSingleValue);
var stringLength = value2.Length;
return value1.CompareTo(stringLength);
}
示例3: Between
/// <summary>
/// A T extension method that check if the value is between (exclusif) the minValue and maxValue.
/// </summary>
/// <param name="this">The @this to act on.</param>
/// <param name="minValue">The minimum value.</param>
/// <param name="maxValue">The maximum value.</param>
/// <returns>true if the value is between the minValue and maxValue, otherwise false.</returns>
/// ###
/// <typeparam name="T">Generic type parameter.</typeparam>
public static bool Between(this Int32 @this, Int32 minValue, Int32 maxValue)
{
return minValue.CompareTo(@this) == -1 && @this.CompareTo(maxValue) == -1;
}
示例4: AssertComparison
private static void AssertComparison(Int32 value1, Int32 value2)
{
var expectedComparisonResult = value1.CompareTo(value2);
AssertComparison(new DataObjectValue(value1), new DataObjectValue(value2), expectedComparisonResult);
}