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