摘要:
CodePointAt(0) //返回码点十进制值 eg: var a="?c"; a.CodePointAt(0); 如果想要十六进制可以使用toString(); eg: var a="?c"; a.CodePointAt(0).toString(16); 阅读全文
posted @ 2021-08-03 17:23
双手插在裤兜谁也不爱
阅读(103)
评论(0)
推荐(0)
摘要:
方法一: HTML: @foreach (var itemkangxi in Model.shuKangxiEntitiesList) { <strong>&#@{@itemkangxi.Code};</strong> } 方法二: @foreach (var itemzidic in Model. 阅读全文
posted @ 2021-08-03 17:16
双手插在裤兜谁也不爱
阅读(93)
评论(0)
推荐(0)
摘要:
public static string tenToSixteen(int? code, int width) { int amount = (int)code; string current = ""; string codes = "0123456789ABCDEF"; // 设置16进制转换编 阅读全文
posted @ 2021-08-03 17:11
双手插在裤兜谁也不爱
阅读(171)
评论(0)
推荐(0)