本文整理汇总了C#中FOS_System.ToLower方法的典型用法代码示例。如果您正苦于以下问题:C# FOS_System.ToLower方法的具体用法?C# FOS_System.ToLower怎么用?C# FOS_System.ToLower使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类FOS_System
的用法示例。
在下文中一共展示了FOS_System.ToLower方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Parse_HexadecimalUnsigned
/// <summary>
/// Parses a string as an unsigned hexadecimal integer.
/// </summary>
/// <param name="str">The string to parse.</param>
/// <param name="offset">The offset into the string at which to start parsing.</param>
/// <returns>The parsed uint.</returns>
public static uint Parse_HexadecimalUnsigned(FOS_System.String str, int offset)
{
str = str.ToLower();
if (str.length - offset >= 2)
{
if (str[offset] == '0' && str[offset + 1] == 'x')
{
offset += 2;
}
}
uint result = 0;
for (int i = offset; i < str.length; i++)
{
char c = str[i];
if ((c < '0' || c > '9') && (c < 'a' || c > 'f'))
{
break;
}
result *= 16;
if (c >= '0' && c <= '9')
{
result += (uint)(c - '0');
}
else
{
result += (uint)(c - 'a') + 10;
}
}
return result;
}