.NET 幫助

C# 列印變數:簡化您的代碼

發佈 2024年4月3日
分享:

在 C# 中打印變數是每位開發人員必備的技能。 無論您是在調試程式碼、向使用者顯示資訊,還是僅僅檢查程式的狀態,Console.WriteLine 語句都是標準輸出流操作的首選工具。 來自 System 命名空間的 Console 類別提供了 WriteWriteLine 方法,用於在控制台窗口上列印變數值。

在這篇綜合文章中,我們將探索 在C#中列印變數 的各個方面,包括不同的數據類型、格式選項和高級技術。

基礎變數列印

我們可以使用 Console.WriteLine 方法輕鬆列印數值,如以下程式碼範例所示。

int integerValue = 42; // specified value
Console.WriteLine($"Integer Value: {integerValue}"); // standard output stream
int integerValue = 42; // specified value
Console.WriteLine($"Integer Value: {integerValue}"); // standard output stream
Dim integerValue As Integer = 42 ' specified value
Console.WriteLine($"Integer Value: {integerValue}") ' standard output stream
VB   C#

在這個基本範例中,我們宣告了一個整數變數(integerValue)並使用 Console.WriteLine 語句將指定的值列印到控制台。 字串前的 $ 符號允許我們使用字串插值直接將變數嵌入字串中。

字串變數列印

string greeting = "Hello, C#!";
Console.WriteLine($"Greeting: {greeting}");
string greeting = "Hello, C#!";
Console.WriteLine($"Greeting: {greeting}");
Dim greeting As String = "Hello, C#!"
Console.WriteLine($"Greeting: {greeting}")
VB   C#

列印字符串變量遵循相同的模式。 我們宣告一個字串變數(問候)指定字串值("你好,C#!),並使用 Console.WriteLine 進行輸出。 這對於顯示訊息或任何文字信息非常有用。

C# 列印變數(它對於開發人員的運作方式):圖1 - 字串變數輸出

如果您想在同一行上打印變量值,那麼可以使用 Console.Write 方法。 這兩個方法之間唯一的區別是,WriteLine 在結尾留下了一個換行字符,因此下一個輸出將打印在下一行,而 Write 方法將所有內容打印在同一行。

多個變量在單行中

int x = 5, y = 10;
Console.WriteLine($"X: {x}, Y: {y}");
int x = 5, y = 10;
Console.WriteLine($"X: {x}, Y: {y}");
Dim x As Integer = 5, y As Integer = 10
Console.WriteLine($"X: {x}, Y: {y}")
VB   C#

您可以在字串中用逗號分隔變數,來在單行内列印多個變數。 這有利於將相關資訊一起顯示。

C# 打印變量(開發者如何操作):圖 2 - 單行輸出多個變量

格式化變量

double piValue = Math.PI;
Console.WriteLine($"Approximate Value of Pi: {piValue:F5}");
double piValue = Math.PI;
Console.WriteLine($"Approximate Value of Pi: {piValue:F5}");
Dim piValue As Double = Math.PI
Console.WriteLine($"Approximate Value of Pi: {piValue:F5}")
VB   C#

格式化變得至關重要,尤其是對浮點數而言。 在此,F5 格式说明符确保圓周率的值在小数点后显示五位数字。

串連變數

int apples = 3, oranges = 5;
Console.WriteLine("Total Fruits: " + (apples + oranges));
int apples = 3, oranges = 5;
Console.WriteLine("Total Fruits: " + (apples + oranges));
Dim apples As Integer = 3, oranges As Integer = 5
Console.WriteLine("Total Fruits: " & (apples + oranges))
VB   C#

字串連接可用於更複雜的輸出。 在這裡,水果的總數已計算並打印在同一行。

列印變數類型

bool isTrue = true;
Console.WriteLine($"Is True? {isTrue}, Variable Type: {isTrue.GetType()}");
bool isTrue = true;
Console.WriteLine($"Is True? {isTrue}, Variable Type: {isTrue.GetType()}");
Dim isTrue As Boolean = True
Console.WriteLine($"Is True? {isTrue}, Variable Type: {isTrue.GetType()}")
VB   C#

有時,顯示不僅是變量的默認值,還有變量的類型是有益的。 GetType() 方法完成這個。

打印變量的高級技術

使用 String.Format

int width = 10, height = 5;
string formattedOutput = String.Format("Dimensions: {0} x {1}", width, height); Console.WriteLine(formattedOutput);
int width = 10, height = 5;
string formattedOutput = String.Format("Dimensions: {0} x {1}", width, height); Console.WriteLine(formattedOutput);
Dim width As Integer = 10, height As Integer = 5
Dim formattedOutput As String = String.Format("Dimensions: {0} x {1}", width, height)
Console.WriteLine(formattedOutput)
VB   C#

String.Format 方法提供了另一種格式化字串和打印變數的方法,讓輸出結構有更多的控制。

逐字串文字面值

string filePath = @"C:\MyDocuments\file.txt";
Console.WriteLine($"File Path: {filePath}");
string filePath = @"C:\MyDocuments\file.txt";
Console.WriteLine($"File Path: {filePath}");
Dim filePath As String = "C:\MyDocuments\file.txt"
Console.WriteLine($"File Path: {filePath}")
VB   C#

對於包含轉義字符的路徑或字符串,逐字字符串常量(@前綴以@)可以用來簡化程式碼。 在這裡,字串格式化有助於輕鬆打印文件路徑。

控制台輸出控制

重定向控制台輸出

以下代碼示例幫助您將控制台窗口輸出寫入文件:

using System;
using System.IO;
class Program
{
// public static void Main
    public static void Main(string [] args)
    {
        string outputPath = "output.txt";
        using (StreamWriter sw = new StreamWriter(outputPath))
        {
            Console.SetOut(sw);
            Console.WriteLine("This will be written to the file.");
        }
    }
}
using System;
using System.IO;
class Program
{
// public static void Main
    public static void Main(string [] args)
    {
        string outputPath = "output.txt";
        using (StreamWriter sw = new StreamWriter(outputPath))
        {
            Console.SetOut(sw);
            Console.WriteLine("This will be written to the file.");
        }
    }
}
Imports System
Imports System.IO
Friend Class Program
' public static void Main
	Public Shared Sub Main(ByVal args() As String)
		Dim outputPath As String = "output.txt"
		Using sw As New StreamWriter(outputPath)
			Console.SetOut(sw)
			Console.WriteLine("This will be written to the file.")
		End Using
	End Sub
End Class
VB   C#

將控制台輸出重定向到文件可讓您捕獲並保存輸出以便進一步分析或記錄目的。

控制台顏色

Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("This text will be displayed in red.");
Console.ResetColor(); // Reset color to default
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("This text will be displayed in red.");
Console.ResetColor(); // Reset color to default
Console.ForegroundColor = ConsoleColor.Red
Console.WriteLine("This text will be displayed in red.")
Console.ResetColor() ' Reset color to default
VB   C#

更改控制台文本顏色可以為特定輸出添加視覺強調,讓區分不同類型的信息變得更容易。

IronPrint:賦予 .NET 開發人員先進的列印功能

IronPrint是一個由 Iron Software 開發的強大列印庫。 IronPrint 是一個全面的列印函式庫,旨在與 .NET 應用程式無縫整合。 IronPrint 是一個可靠且功能豐富的 .NET 開發人員打印庫。 其跨平台的相容性、對各種文件格式的支援以及可自定義的設定使其成為處理多樣印刷任務的寶貴工具。 無論您是為桌面、移動或網頁應用程式開發,IronPrint 都提供一個多功能的解決方案,以滿足您在不斷發展的 .NET 開發環境中的列印需求。

C# 列印變量(開發者如何使用):圖3 - IronPrint

它提供了一系列功能,使開發人員能夠處理多種列印需求,從基礎文件列印到可自訂設定和跨平台相容性。

主要功能

  1. 格式支援:IronPrint 支援多種文件格式,包括 PDF、PNG、HTML、TIFF、GIF、JPEG 和 BITMAP。這種多功能性確保開發人員可以處理不同類型的列印內容。

  2. 自訂設定: 開發人員可以根據他們應用程式的需求靈活調整列印設定。 這包括設置 DPI 的選項(每英寸點數),指定紙張方向(豎向或橫向)控制副本數量。

  3. 列印對話框: IronPrint 提供了流暢的使用者體驗,允許開發人員在列印之前顯示列印對話框。 這在用戶需要與打印過程互動並選擇特定選項的情境中可能很有用。

相容性與安裝

IronPrint 在不同的 .NET 版本上擁有廣泛的相容性,使其可供各類開發人員使用。 它支持 .NET 8、7、6、5 和 Core 3.1+,以及 .NET Framework。(4.6.2+). 該庫適用於各種專案類型,包括移動專案。(Xamarin, MAUI),桌面(WPF、MAUI、Windows Avalonia),和控制台應用程式。

安裝

要開始使用 IronPrint,開發人員可以使用 NuGet 套件管理器快速安裝該庫。

Install-Package IronPrint

或者,可以從官方的 IronPrint NuGet 網站或使用 NuGet 套件管理器下載該套件。

套用授權金鑰

在使用IronPrint功能之前,開發者需要申請有效的許可證或試用金鑰。 這涉及將授權密鑰分配給 License 類的 LicenseKey 屬性。 以下程式碼片段示範了這個步驟:

using IronPrint; 
// Apply license key
License.LicenseKey = "IRONPRINT.MYLICENSE.KEY.1EF01";
using IronPrint; 
// Apply license key
License.LicenseKey = "IRONPRINT.MYLICENSE.KEY.1EF01";
Imports IronPrint
' Apply license key
License.LicenseKey = "IRONPRINT.MYLICENSE.KEY.1EF01"
VB   C#

程式碼範例

列印文件

To列印使用 IronPrint 列印文件時,開發人員只需將檔案路徑傳遞給 Print 方法:

using IronPrint;
// Print the document
Printer.Print("newDoc.pdf");
using IronPrint;
// Print the document
Printer.Print("newDoc.pdf");
Imports IronPrint
' Print the document
Printer.Print("newDoc.pdf")
VB   C#

顯示列印對話框

對於需要...的情境列印對話框可以使用 ShowPrintDialog 方法:

using IronPrint;
// Show print dialog
Printer.ShowPrintDialog("newDoc.pdf");
using IronPrint;
// Show print dialog
Printer.ShowPrintDialog("newDoc.pdf");
Imports IronPrint
' Show print dialog
Printer.ShowPrintDialog("newDoc.pdf")
VB   C#

自訂列印設定

配置列印設定程式化地,開發者可以實例化 PrintSettings 類別:

using IronPrint;
// Configure print setting
PrintSettings printSettings = new PrintSettings();
printSettings.Dpi = 150;
printSettings.NumberOfCopies = 2;
printSettings.PaperOrientation = PaperOrientation.Portrait;
// Print the document with custom settings
Printer.Print("newDoc.pdf", printSettings);
using IronPrint;
// Configure print setting
PrintSettings printSettings = new PrintSettings();
printSettings.Dpi = 150;
printSettings.NumberOfCopies = 2;
printSettings.PaperOrientation = PaperOrientation.Portrait;
// Print the document with custom settings
Printer.Print("newDoc.pdf", printSettings);
Imports IronPrint
' Configure print setting
Private printSettings As New PrintSettings()
printSettings.Dpi = 150
printSettings.NumberOfCopies = 2
printSettings.PaperOrientation = PaperOrientation.Portrait
' Print the document with custom settings
Printer.Print("newDoc.pdf", printSettings)
VB   C#

如需更多程式碼範例,請造訪這個程式碼範例頁面。

結論

在 C# 中打印變量是一項每位開發者應掌握的基本技能。 Console.WriteLine 語句結合了不同的格式化技術,例如字串串接、字串常值和字串插值,提供了一種靈活且有效的方式來輸出變數的值。 當您探索更複雜的情境,例如使用不同的數據類型和進階格式選項時,您將提升在 C# 程式中有效傳遞資訊的能力。

IronPrint 是一個付費的庫,但開發人員可以通過使用免費試用許可證。 如需更多資訊,開發人員可以造訪官方網站。文檔API 參考頁面。 從下載該庫這裡試試看。

< 上一頁
如何有效使用 C# Print Line
下一個 >
精通 C# 打印功能:開發人員指南

準備開始了嗎? 版本: 2024.12 剛剛發布

免費 NuGet 下載 總下載次數: 13,051 查看許可證 >