本文整理汇总了C#中ExtractValue.IsNull方法的典型用法代码示例。如果您正苦于以下问题:C# ExtractValue.IsNull方法的具体用法?C# ExtractValue.IsNull怎么用?C# ExtractValue.IsNull使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ExtractValue
的用法示例。
在下文中一共展示了ExtractValue.IsNull方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: _IsParamsArray
private bool _IsParamsArray(LuaCore.lua_State luaState, int currentLuaParam, ParameterInfo currentNetParam, out ExtractValue extractValue)
{
extractValue = null;
if (currentNetParam.GetCustomAttributes(typeof(ParamArrayAttribute), false).Length > 0)
{
LuaTypes luaType;
try
{
luaType = LuaLib.lua_type(luaState, currentLuaParam);
}
catch(Exception ex)
{
Debug.WriteLine("Could not retrieve lua type while attempting to determine params Array Status.");
Debug.WriteLine(ex.Message);
extractValue = null;
return false;
}
if(luaType == LuaTypes.Table)
{
try
{
extractValue = translator.typeChecker.getExtractor(typeof(LuaTable));
}
catch(Exception/* ex*/)
{
Debug.WriteLine("An error occurred during an attempt to retrieve a LuaTable extractor while checking for params array status.");
}
if(!extractValue.IsNull())
{
return true;
}
}
else
{
var paramElementType = currentNetParam.ParameterType.GetElementType();
try
{
extractValue = translator.typeChecker.checkType(luaState, currentLuaParam, paramElementType);
}
catch (Exception/* ex*/)
{
Debug.WriteLine(string.Format("An error occurred during an attempt to retrieve an extractor ({0}) while checking for params array status.", paramElementType.FullName));
}
if(!extractValue.IsNull())
{
return true;
}
}
}
Debug.WriteLine("Type wasn't Params object.");
return false;
}