Console.Write C# การแสดงผลข้อมูลของ Console Application C#
บทความวันที่ 25 พฤศจิกายน 2555
Console.Write คือ คำสั่งสำหรับการแสดงผลข้อมูลต่าง ๆ ออกสู่หน้าจอ (Output) ของภาษา C# ในสภาพแวดล้อมการพัฒนาโปรแกรมแบบ Console Application
ภาพรวมของ Console.Write
1. Console.Write ใช้สำหรับการแสดงผลข้อมูลออกสู่หน้าจอ
2. Console.WriteLine ใช้สำหรับการแสดงผลข้อมูลออกสู่หน้าจอแบบขึ้นบรรทัดใหม่
ตัวอย่างโปรแกรม
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication3
{
class Program
{
static void Main(string[] args)
{
string name = "AmplySoft :)";
Console.Write("Hello, AmplySoft with Console.Write\n");
Console.WriteLine("Hello, AmplySoft with Console.WriteLine");
Console.WriteLine("Hello, " + name);
Console.Write("Hello, {0}", name);
Console.ReadLine();
}
}
}
ผลลัพธ์
คำค้นหา Console.Write C#, รับเขียนเว็บ, เรียนเขียนโปรแกรม, รับทำเว็บ