前提・実現したいこと
visual studio2019 community macアプリケーション出力に表示される日本語が「?」になってしまう
?を日本語にしたい
発生している問題・エラーメッセージ
visual studio2019 community macでコンソールアプリを作成し日本語と英語の文字列を記載しデバックなし開始を 実行するとターミナルに英語は表示されるが日本語が???で表示される
該当のソースコード
C# Program.cs
1using System; 2 3namespace hello 4{ 5 class MainClass 6 { 7 public static void Main(string[] args) 8 { 9 10 Console.WriteLine("Hello World!"); 11 Console.WriteLine("おはよう"); 12 13 } 14 } 15} 16
AssemblyInfo.cs
1using System.Reflection; 2using System.Runtime.CompilerServices; 3 4// Information about this assembly is defined by the following attributes. 5// Change them to the values specific to your project. 6 7[assembly: AssemblyTitle("hello")] 8[assembly: AssemblyDescription("")] 9[assembly: AssemblyConfiguration("")] 10[assembly: AssemblyCompany("")] 11[assembly: AssemblyProduct("")] 12[assembly: AssemblyCopyright("${AuthorCopyright}")] 13[assembly: AssemblyTrademark("")] 14[assembly: AssemblyCulture("")] 15 16// The assembly version has the format "{Major}.{Minor}.{Build}.{Revision}". 17// The form "{Major}.{Minor}.*" will automatically update the build and revision, 18// and "{Major}.{Minor}.{Build}.*" will update just the revision. 19 20[assembly: AssemblyVersion("1.0.*")] 21 22 23// The following attributes are used to specify the signing key for the assembly, 24// if desired. See the Mono documentation for more information about signing. 25 26//[assembly: AssemblyDelaySign(false)] 27//[assembly: AssemblyKeyFile("")] 28
試したこと
環境変数を設定し
vim .bash_profile
に
export LANG=ja_JP.UTF-8
を追加し再起動した。
ターミナルから直接コマンドを実行したときは???はなく日本語で表示されていた。
補足情報(FW/ツールのバージョンなど)
mac
visual studio2019 community mac
あら、本質的に解決してないのに解決済みにしてたんですね。
前の質問の回答が全く反映されていないので、まずそれをして詳細な手順と結果を報告しなければ先に進めないでしょう。