3C科技 娛樂遊戲 美食旅遊 時尚美妝 親子育兒 生活休閒 金融理財 健康運動 寰宇綜合

Zi 字媒體

2017-07-25T20:27:27+00:00
加入好友
C# 建立/使用 .net DLL(CS_Create_Use_DLL) 資料來源: https://dotblogs.com.tw/hung-chin/2011/09/30/38449 GITHUB: https://github.com/jash-git/CS_Create_Use_DLL DLL using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace CS_Create_Use_DLL { public class Class1 { //https://dotblogs.com.tw/hung-chin/2011/09/30/38449 public string StrUpperLower(string word,bool blnUpper=true)//方法名稱 { if(blnUpper) { return word.ToUpper(); } else { return word.ToLower(); } } } } EXE using System; using System.Collections.Generic; using System.Linq; using System.Text; using CS_Create_Use_DLL; namespace testDLL { class Program { static void Pause() { Console.Write("Press any key to continue..."); Console.ReadKey(true); } static void Main(string[] args) { Class1 x = new Class1();//用new 建立類別實體 String StrData = "jash.liao"; Console.WriteLine("{0} Upper {1}", StrData,x.StrUpperLower(StrData)); Console.WriteLine("{0} Lower {1}", x.StrUpperLower(StrData), x.StrUpperLower(StrData,false)); Pause(); } } }

本文由jashliaoeuwordpress提供 原文連結

寫了 5860316篇文章,獲得 23313次喜歡
精彩推薦