中文字幕在线观看,亚洲а∨天堂久久精品9966,亚洲成a人片在线观看你懂的,亚洲av成人片无码网站,亚洲国产精品无码久久久五月天

C#從windows剪貼板獲取并顯示文本內(nèi)容

2018-07-20    來源:open-open

容器云強(qiáng)勢上線!快速搭建集群,上萬Linux鏡像隨意使用

using System;
using System.Windows.Forms;
 
namespace RobvanderWoude
{
    class Paste
    {
        [STAThread]
        static int Main( string[] args )
        {
            if ( args.Length == 0 )
            {
                try
                {
                    if ( Clipboard.ContainsText( ) )
                    {
                        string clipText = Clipboard.GetText( );
                        Console.Write( clipText );
                        return 0;
                    }
                    else
                    {
                        return 1;
                    }
                }
                catch ( Exception e )
                {
                    Console.Error.WriteLine( e.Message );
                    return 2;
                }
            }
            else
            {
                Console.Error.WriteLine( );
                Console.Error.WriteLine( "Paste.exe,  Version 1.01" );
                Console.Error.WriteLine( "Read and display text from the clipboard" );
                Console.Error.WriteLine( );
                Console.Error.WriteLine( "Usage:  PASTE" );
                Console.Error.WriteLine( );
                Console.Error.WriteLine( "Note:   The program returns the following 'errorlevels':" );
                Console.Error.WriteLine( "            0    success" );
                Console.Error.WriteLine( "            1    no text available in clipboard" );
                Console.Error.WriteLine( "            2    command line or unknown error" );
                Console.Error.WriteLine( );
                Console.Error.WriteLine( "Written by Rob van der Woude" );
                Console.Error.WriteLine( "http://www.robvanderwoude.com" );
                return 2;
            }
        }
    }
}

標(biāo)簽: isp

版權(quán)申明:本站文章部分自網(wǎng)絡(luò),如有侵權(quán),請聯(lián)系:west999com@outlook.com
特別注意:本站所有轉(zhuǎn)載文章言論不代表本站觀點!
本站所提供的圖片等素材,版權(quán)歸原作者所有,如需使用,請與原作者聯(lián)系。

上一篇:C# 堆排序示例代碼

下一篇:C#編寫的屏幕監(jiān)控代碼