WinForm 開發C 學習筆記1

2021-09-19 17:15:28 字數 1582 閱讀 5949

console.writeline("hello world");
它使用 console.writeline 方法列印此訊息。 console 是表示控制台視窗的型別。 writeline 是 console 型別的方法,負責將文字行列印到文字控制台。

string afriend = "bill";

console.writeline(afriend);

第一行**宣告變數 afriend,並為它分配值「bill」。 第二行**列印出姓名。

可能還會注意到,最後兩條訊息中沒有「hello」一詞。 現在就來解決一下這個問題。 將負責列印訊息的**行修改為以下**:

console.writeline("hello"+afriend);
這稱字串內插

不僅限於使用大括號之間的單個變數。 試執行以下**:

string firstfriend="maria";

string secondfriend="sage"

console.writeline($"my friend are and ");

字串裁剪空格:望剪裁字串中的空格。 trim 方法及相關方法trimstarttrimend將完成這項工作

string greeting = "      hello world!       ";

console.writeline($"");

string trimmedgreeting = greeting.trimstart();

console.writeline($"");

trimmedgreeting = greeting.trimend();

console.writeline($"");

trimmedgreeting = greeting.trim();

console.writeline($"");

將字串設為全部大寫或小寫:

試執行以下**:

string sayhello = "hello world!";

console.writeline(sayhello.toupper());

console.writeline(sayhello.tolower());

查詢字串中的文字。 可以使用contains方法進行搜尋。 此方法可確定字串是否包含子字串。請試執行以下**:

string songlyrics = "you say goodbye, and i say hello";

console.writeline(songlyrics.contains("goodbye"));

console.writeline(songlyrics.contains("greetings"));

contains 方法返回布林值,指明是否找到了要搜尋的字串。 布林變數儲存 true 或 false 值

WinForm 學習筆記 c sharp

1,連線字串的操作 xml version 1.0 encoding utf 8 configuration connectionstrings add name connstring connectionstring localsqlserver data source 127.0.0.1 int...

winform 控制項開發1 復合控制項

哈哈是不是醜死了?做了乙個不停變色的按鈕,可以通過勾選checkbox停下來,如下 復合控制項果然簡單呀,我都能學會 1 using system 2using system.collections.generic 3using system.componentmodel 4using system...

c 與 winform 介面開發

c 與 net 開發,一堆又一堆的新名詞,頭暈目眩,比如 clr apartments sta mta com 吐槽無力,只乙個問題 微軟真的是軟體公司,而不是文學公司?form1.cs 與 form1.designer.cs 是 2 個檔案,一起定義了乙個 form 的行為 樣式等。在 vs201...