stringmake.cs
来自「企业内部的短信交流管理平台。 设计详细」· CS 代码 · 共 29 行
CS
29 行
using System;
namespace Com.SMS.SMSUI.Util
{
/// <summary>
/// StringMake 的摘要说明。
/// </summary>
public class StringMake
{
static public string Left(object text, int len)
{
if (text.ToString().Length <= len)
return text.ToString();
else
return text.ToString().Substring(0, len);
}
static public string Left(object text, int len, string endstr)
{
if (text.ToString().Length <= len)
return text.ToString();
else
return text
.ToString()
.Substring(0, len - endstr.Length)
+ endstr;
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?