代码搜索:Encoding
找到约 10,000 项符合「Encoding」的源代码
代码结果 10,000
www.eeworm.com/read/226630/14456804
cs tlvstring.cs
using System;
using System.Collections.Generic;
using System.Text;
namespace SMPP.Variable
{
///
/// 定长TLV字符串
///
public class TLVString : TLV
{
private System
www.eeworm.com/read/226630/14456806
cs varstring.cs
using System;
using System.Collections.Generic;
namespace SMPP.Variable
{
///
/// 变长字符串类型
///
public class VARString : VARBinary
{
///
/// 编码类型字段索引
www.eeworm.com/read/226630/14456810
cs cstring.cs
using System;
using System.Collections.Generic;
using System.Text;
namespace SMPP.Variable
{
///
/// 定长字符串类型
/// 有两种可能的长度:一个字节的0x00(即空字符串)或固定长度的以NULL结尾的字符串
///
pu
www.eeworm.com/read/226630/14456812
cs cvarstring.cs
using System;
using System.Collections.Generic;
using System.Text;
namespace SMPP.Variable
{
///
/// 变长字符串类型
/// 存储以NULL结尾的字符串
///
public class CVARString : Varia
www.eeworm.com/read/226630/14456814
cs tlvvarstring.cs
using System;
using System.Collections.Generic;
using System.Text;
namespace SMPP.Variable
{
///
/// 变长TLV字符串
///
public class TLVVARString : TLV
{
private Sys