mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-09-11 22:53:04 +00:00
* fix(group): surface friendly error when group name not found Squashed commits: - test(csharp): add #903 regression — parse completeness for single-file C# repo - fix(group): add GroupNotFoundError guard to groupList + re-throw tests for groupQuery/groupStatus - fix(test): restore section comments in csharp.test.ts stripped during rebase * fix(group): catch GroupNotFoundError explicitly in groupContext and groupImpact
17 lines
283 B
C#
17 lines
283 B
C#
namespace Demo;
|
|
|
|
public class Greeter
|
|
{
|
|
public string Greet(string name) => $"Hello, {name}!";
|
|
|
|
public static void Main(string[] args)
|
|
{
|
|
var g = new Greeter();
|
|
System.Console.WriteLine(g.Greet("world"));
|
|
}
|
|
}
|
|
|
|
public interface IFoo
|
|
{
|
|
void Bar();
|
|
}
|