我在 SO 上遇到了这段代码,我正在尝试将其转换为 VB.net 但是我找不到类型“结果”
public Result QueryWithRetry(IQueryable query)
{
RetryPolicy retry = new RetryPolicy<MyRetryStrategy>(5, TimeSpan.FromSeconds(5));
(() =>
{
return retry.ExecuteAction(query);
}
}
什么是“结果”,我需要导入什么命名空间才能访问它?我到处都找不到!