找不到 Q# AggregateException
Q# AggregateException could not be found
尝试了 https://docs.microsoft.com/en-us/quantum/quantum-simulatorsandmachines?view=qsharp-preview
中的这段代码后
try
{
using (var sim = new QuantumSimulator())
{
/// call your operations here...
}
}
catch (AggregateException e)
{
// Unwrap AggregateException to get the message from Q# fail statement.
// Go through all inner exceptions.
foreach (Exception inner in e.InnerExceptions)
{
// If the exception of type ExecutionFailException
if (inner is ExecutionFailException failException)
{
// Print the message it contains
Console.WriteLine($" {failException.Message}");
}
}
}
我收到以下错误:
Driver.cs(29,20): error CS0246: The type or namespace name 'AggregateException' could not be found (are you missing a using directive or an assembly reference?) [/home/tinkidinki/Quantum/Bell/Bell.csproj]
Driver.cs(33,26): error CS0246: The type or namespace name 'Exception' could not be found (are you missing a using directiveor an assembly reference?) [/home/tinkidinki/Quantum/Bell/Bell.csproj]
Driver.cs(38,25): error CS0103: The name 'Console' does not exist in the current context [/home/tinkidinki/Quantum/Bell/Bell.csproj]
The build failed. Please fix the build errors and run again.
我该如何解决这个问题?
你能分享你的整个 C# 代码吗?鉴于错误消息甚至提到了 Console
,看来您的 C# 代码中缺少 using System
。
尝试了 https://docs.microsoft.com/en-us/quantum/quantum-simulatorsandmachines?view=qsharp-preview
中的这段代码后try
{
using (var sim = new QuantumSimulator())
{
/// call your operations here...
}
}
catch (AggregateException e)
{
// Unwrap AggregateException to get the message from Q# fail statement.
// Go through all inner exceptions.
foreach (Exception inner in e.InnerExceptions)
{
// If the exception of type ExecutionFailException
if (inner is ExecutionFailException failException)
{
// Print the message it contains
Console.WriteLine($" {failException.Message}");
}
}
}
我收到以下错误:
Driver.cs(29,20): error CS0246: The type or namespace name 'AggregateException' could not be found (are you missing a using directive or an assembly reference?) [/home/tinkidinki/Quantum/Bell/Bell.csproj]
Driver.cs(33,26): error CS0246: The type or namespace name 'Exception' could not be found (are you missing a using directiveor an assembly reference?) [/home/tinkidinki/Quantum/Bell/Bell.csproj]
Driver.cs(38,25): error CS0103: The name 'Console' does not exist in the current context [/home/tinkidinki/Quantum/Bell/Bell.csproj]
The build failed. Please fix the build errors and run again.
我该如何解决这个问题?
你能分享你的整个 C# 代码吗?鉴于错误消息甚至提到了 Console
,看来您的 C# 代码中缺少 using System
。