1

从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.

我该如何解决?

4

1 回答 1

2

你能分享你的整个C#代码吗?鉴于错误消息提到 even Console,看起来您using System在 C# 代码中缺少 a 。

于 2018-07-06T15:18:43.893 回答