如何从这种双数组方法返回布尔值?
public static double[] GetUIPosition(string name)
{
if (FastUICheck.FastUICheckVisible(name, 0) == true)
{
UIControl control = new UIControl(Engine.Current.Memory, Engine.Current.ObjectManager.x984_UI.x0000_Controls.x10_Map[name].Value.Address);
double[] point = new double[4];
point[0] = control.x4D8_UIRect.Left;
point[1] = control.x4D8_UIRect.Top;
point[2] = control.x4D8_UIRect.Right;
point[3] = control.x4D8_UIRect.Bottom;
return point;
}
else
{
return false;
}
}
所以基本上我正在检查一个控件是否存在于内存中并且可见,如果是,那么我想获取它的正确性。
因此,如果是,我将返回一个包含4点的数组,否则我想返回false。
是否有捷径可寻?
最佳答案
不,bool
不可强制转换为dobule[]
。
但是,您可以仅返回null
并将其检查为“ false”值。
您也可以采用TryParse
方法并返回bool
,并将double[]
作为out
参数。签名为:
public static bool GetUIPosition(string name, out double[] position)
您的代码返回null:
public static double[] GetUIPosition(string name)
{
if (FastUICheck.FastUICheckVisible(name, 0) == true)
{
UIControl control = new UIControl(Engine.Current.Memory, Engine.Current.ObjectManager.x984_UI.x0000_Controls.x10_Map[name].Value.Address);
double[] point = new double[4];
point[0] = control.x4D8_UIRect.Left;
point[1] = control.x4D8_UIRect.Top;
point[2] = control.x4D8_UIRect.Right;
point[3] = control.x4D8_UIRect.Bottom;
return point;
}
else
{
return null;
}
}
一个类似的问题,有帮助的答案:
How can I return multiple values from a function in C#?
关于c# - C#从double []方法返回 bool 值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24297040/