Hello world/Standard error: Difference between revisions

I'm pretty sure this is how C# does it
(I'm pretty sure this is how C# does it)
Line 31:
}
</c>
=={{header|C sharp|C#}}==
<csharp>static class StdErr
{
static void Main(string[] args)
{
Console.Error.WritleLine("Goodbye, World!");
}
}</csharp>
 
=={{header|C++}}==
Anonymous user