我正在使用 RPC(protobuf-remote),我需要做一些检查以防另一端(服务器)关闭。假设我有很多 RPC 方法,例如:
public FirstObj First(string one, string two)
{
if (rpc == null)
return (FirstObj)Activator.CreateInstance(typeof(FirstObj));
return rpc.First(one, two);
}
public SecondObj Second(string one)
{
if (rpc == null)
return (SecondObj)Activator.CreateInstance(typeof(SecondObj));
return rpc.Second(one);
}
public ThirdObj Third()
{
if (rpc == null)
return (ThirdObj)Activator.CreateInstance(typeof(ThirdObj));
return rpc.Third();
}
有没有办法改变这个重复的空检查代码?所以我可以写这样的东西:
public FirstObj First(string one, string two)
{
return rpc.First(one, two);
}
如果 RPC 服务器关闭,它将进行空值检查并按其类型创建对象,因此我将获得所需对象的默认值。