What is the C# version on replit, and how to change it?

@Coder100 What version of C# does Replit and Unity use?

Replit can use any version by configuring the replit.nix file, for Unity it will likely depend on what version of Unity you’re using, but you could probably search that in your browser and get the right answer.

@MattDESTROYER How do I change my C# version in Replit?

You could change it to this:

{ pkgs }: {
	deps = [
		pkgs.jq.bin
		pkgs.dotnet-sdk_7
		pkgs.omnisharp-roslyn
	];
}

To get the latest available version of dotnet-sdk. Other people might be able to help more, I’m not the best with configuring the replit.nix file :man_shrugging: