初級 › type or namespace name could not be found の原因と直し方 › パターン2
type or namespace name could not be found の原因と直し方
List<T>やDictionary、StringBuilderなど、名前空間ごとに分かれたクラスを使うにはusingディレクティブが必要です。
1 __________________________ ^ 2 class Program { 3 static void Main(string[] args) { 4 StringBuilder sb = new StringBuilder(); 5 sb.Append("Hi"); 6 System.Console.WriteLine(sb.ToString()); 7 } 8 }
Program.cs(4,9): error CS0246: The type or namespace name 'StringBuilder' could not be found (are you missing a using directive or an assembly reference?)
空欄を埋めてビルドを通す
StringBuilderはSystem.Text名前空間にあります。文字列操作系のクラスをまとめてここに置いています。
次の問題