本文整理汇总了C#中CSLE.CLType.ToString方法的典型用法代码示例。如果您正苦于以下问题:C# CLType.ToString方法的具体用法?C# CLType.ToString怎么用?C# CLType.ToString使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CSLE.CLType
的用法示例。
在下文中一共展示了CLType.ToString方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetType
public ICLS_Type GetType(CLType type)
{
if (type == null)
return typess["null"];
if (types.ContainsKey(type) == false)
{
logger.Log_Error("(CLScript)类型未注册:" + type.ToString());
}
return types[type];
}
示例2: DefineAndSet
public void DefineAndSet(string name,CLType type,object value)
{
if (values.ContainsKey(name))
throw new Exception(type.ToString()+":"+name+"已经定义过");
Value v = new Value();
v.type = type;
v.value = value;
values[name] = v;
if(tvalues.Count>0)
{
tvalues.Peek().Add(name);//暂存临时变量
}
}
示例3: GetType
public ICLS_Type GetType(CLType type)
{
if (type == null)
return typess["null"];
if (types.ContainsKey(type) == false)
{
logger.Log_Warn("(CLScript)类型未注册,将自动注册一份匿名:" + type.ToString());
RegType(new RegHelper_Type(type, ""));
}
return types[type];
}
示例4: GetType
public ICLS_Type GetType(CLType type)
{
if (type == null)
return dictTypeKeywords["null"];
ICLS_Type iType;
if (dictTypes.TryGetValue(type, out iType))
return iType;
logger.Log_Warn("类型未注册, 这里将自动注册一份匿名:" + type.ToString());
RegType(new RegHelper_Type(type, ""));
return dictTypes[type];
}
示例5: GetType
public ICLS_Type GetType(CLType type)
{
if (type == null)
return typess["null"];
ICLS_Type ret = null;
if (types.TryGetValue(type, out ret) == false)
{
logger.Log_Warn("(CLScript)类型未注册,将自动注册一份匿名:" + type.ToString());
ret = RegHelper_Type.MakeType(type, "");
RegType(ret);
}
return ret;
}