gpt4 book ai didi

c# - 无法跳出finally block

转载 作者:行者123 更新时间:2023-12-05 08:43:35 27 4
gpt4 key购买 nike

我正在尝试从函数返回一个值。函数 WcfProvider.MetalsPrices 可能会引发异常。我想避免它。

public IEnumerable<PriceOfMetal> GetPrice(int id, DateTime time)
{
bool condition = false;
DateTime timenew = time.AddDays(-1);

var allPrice = from c in db.PriceOfMetal
select c;

foreach (var i in allPrice)
{
if (i.Date.Date == timenew.Date && i.ListOfMetaL_Id==id)
{
condition = true;
}
}

try
{
if (condition == false)
{
var price = WcfProvider.MetalsPrices(id, time, time).Tables[0].AsEnumerable()
.Select(
a =>
new PriceOfMetal()
{
Date = a.Field<DateTime>("Date"),
ListOfMetaL_Id = a.Field<int>("MetalId"),
Value = a.Field<System.Double>("Price")
})
.ToList().Single();

db.PriceOfMetal.Add(price);
db.SaveChanges();
}
}
finally
{
var all = from c in db.PriceOfMetal select c;
return all;
}

我想最终返回 block 的值。是否可以?我收到一个错误。

最佳答案

如果内部发生异常,您必须决定您的函数是正常返回还是异常返回。

如果异常(你的调用者会看到异常):

try {
// do stuff
return answer;
}
finally {
// cleanup stuff
}

如果正常,需要处理异常:

try {
// do stuff
}
catch {
// recover stuff
}
// cleanup stuff
return answer;

您永远不能将 return 语句放在 finally block 中,因为 finally 在存在未捕获的异常时运行,并且当您的函数运行时由于未捕获的异常而结束(异常),没有返回值。

关于c# - 无法跳出finally block ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27651911/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com