亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#的System.CommandLine怎么使用

發布時間:2022-10-21 09:51:05 來源:億速云 閱讀:161 作者:iii 欄目:編程語言

本篇內容主要講解“C#的System.CommandLine怎么使用”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“C#的System.CommandLine怎么使用”吧!

System.CommandLine,通過他我們可以幾乎無需任何額外的編碼就可以獲得命令行的支持,它能大幅減少程序員花在提供命令行API(CLI)上的時間,改善CLI程序用戶的體驗,讓開發者能專注于編寫應用程序。

目前這個庫還是預覽版本,要體驗的話需要可以使用如下庫:System.CommandLine.DragonFruit。首先以一個簡單的示例來演示它的功能。

static void Main(string input, string output)
{
    Console.WriteLine($"Input: {input}, Output: {output}");
}

這里我們并沒有要顯式使用這個庫,只需要將Main函數的入參改成我們需要使用的類型,程序便自動實現了命令行的支持。我們甚至可以用—help查看程序的命令行的配置方式

    ConsoleApp1.exe --help
    Usage:
     ConsoleApp1 [options]
    Options:
     --input <INPUT> input
     --output <OUTPUT> output
     --version Display version information

可見,它能自動根據Main函數的參數自動解析出命令行的格式,并生成幫助文檔。

接著,我們再來看看命令行的使用:

    ConsoleApp1 --input ii --output out
    Input: ii, Output: out

完美的進行了命令行的解析,它也可以讀取xml注釋,實現更加復雜的說明。

/// <summary>
/// Converts an image file from one format to another.
/// </summary>
/// <param name="input">The path to the image file that is to be converted.</param>
/// <param name="output">The name of the output from the conversion.</param>
/// <param name="xCropSize">The x dimension size to crop the picture. The default is 0 indicating no cropping is required.</param>
/// <param name="yCropSize">The x dimension size to crop the picture. The default is 0 indicating no cropping is required.</param>
static void Main(string input, string output, int xCropSize = 0, int yCropSize = 0)
{
}

生成的幫助輸出效果如下:

    ConsoleApp1:
     Converts an image file from one format to another.
    Usage:
     ConsoleApp1 [options]
    Options:
     --input <INPUT> The path to the image file that is to be converted.
     --output <OUTPUT> The name of the output from the conversion.
     --x-crop-size <X-CROP-SIZE> The x dimension size to crop the picture. The default is 0 indicating no cropping is required.
     --y-crop-size <Y-CROP-SIZE> The x dimension size to crop the picture. The default is 0 indicating no cropping is required.
     --version Display version information

相比傳統的命令行庫,這個庫的優勢非常明顯,我們可以幾乎不編寫任何代碼就可以獲得命令行程序的支持。對于復雜的命令行程序來說,可能這里的方式并不能滿足需求。System.CommandLine雖然也支持像傳統命令行的庫那樣編寫復雜的命令行支持程序。

到此,相信大家對“C#的System.CommandLine怎么使用”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

色达县| 民县| 唐海县| 高碑店市| 珲春市| 日喀则市| 桐梓县| 来凤县| 镇平县| 临安市| 淮北市| 阳原县| 平江县| 土默特右旗| 思茅市| 靖宇县| 清镇市| 花莲市| 吉首市| 黄骅市| 新乡市| 长武县| 偏关县| 建德市| 漠河县| 泗阳县| 克什克腾旗| 黎川县| 集贤县| 抚顺市| 肃宁县| 天峻县| 正安县| 偃师市| 仁怀市| 嘉祥县| 三河市| 浪卡子县| 新蔡县| 恭城| 黄山市|