Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/copilot/test/scenarios/test-explain/functions.cs
13397 views
/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation and GitHub. All rights reserved.
 *--------------------------------------------------------------------------------------------*/

public void Echo(string name)
{
    Console.WriteLine($"Hello, {name}!");
}

public int Echo2(string name)
{
    Console.WriteLine($"Hello, {name}!");
    return 1;
}

Echo("Alice");