程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> C#學習筆記之二

C#學習筆記之二

編輯:關於C語言
Queue:
Enqueue()
Dequeue()
Peek() //only get first element, not delete it
Stack:
Count()
Clear()
Peek()
Pop()
Push()
CopyTo(array, offset) //copy to array
Dictionary/Hashtable:
Keys //colleation of Keys,
Values //colleation of value
Count()
Clear()
Contains() // is element in hashtable
ContainsKey() // is Key in Hashtable
Item() //Indexer for hashtable
Add() // Add entry with Key/Value
GetEnumerator() // creat and return a Enumator object
Strings:
string
Compare() Split()
Concat() StartsWith()
Equals() ToLower()/ToUpper()
Insert() Trim()
Format()
string.Compare(s1,s2); //case sensitive
string.Compare(s1,s2, true) //case not sensitive
string s3 = @"test \ .Net"
string s6 string.Copy(s5);
string s7 = s6
S7 == S6
S7.Equals(s6)
string.Equals(s7,s6)
s7.Length
s3.EndWith("Test")
int offset = s3.indexOf("TEST") //first occurence
string s10 = s3.Insert(offset, "DDD");
string s11 = s3.Insert(s3.IndexOf("ddd"), "EEE");
s12.Split(delimiters)
Regex r = new Regex(" |,");
foreach( string s in r.Split(s12)) {}
StringBuilder
StringBuilder sb = new StringBuild();
Append()
ToString()
Regular Expresstions:
using System.Text.RegularExpressio
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved