vb

System.Windows.Forms.Application.DoEvents()

createps 發表在 痞客邦 留言(0) 人氣()

String.IndexOf 方法(C#)

createps 發表在 痞客邦 留言(0) 人氣()


  if (MessageBox.Show("選擇完會馬上存檔", "警告", MessageBoxButtons.OKCancel) == DialogResult.Cancel)

createps 發表在 痞客邦 留言(0) 人氣()


VB:

createps 發表在 痞客邦 留言(0) 人氣()


3dsMAX導出.FBX骨骼動畫模型到XNA

createps 發表在 痞客邦 留言(0) 人氣()


除了一般的Random方式以外

createps 發表在 痞客邦 留言(0) 人氣()

C# 字串變數, 如何包含雙引號或反斜線

createps 發表在 痞客邦 留言(0) 人氣()

class TestRegularExpressions
{
    static void Main()
    {
        string[] sentences = 
        {
            "cow over the moon",
            "Betsy the Cow",
            "cowering in the corner",
            "no match here"
        };

        string sPattern = "cow";

        foreach (string s in sentences)
        {
            System.Console.Write("{0,24}", s);

            if (System.Text.RegularExpressions.Regex.IsMatch(s, sPattern, System.Text.RegularExpressions.RegexOptions.IgnoreCase))
            {
                System.Console.WriteLine(" (match for '{0}' found)", sPattern);
            }
            else
            {
                System.Console.WriteLine();
            }
        }
    }
}
 
 

輸出

       cow over the moon  (match for 'cow' found)
       Betsy the Cow  (match for 'cow' found)
       cowering in the corner  (match for 'cow' found)
       no match here

createps 發表在 痞客邦 留言(0) 人氣()

宣告:


createps 發表在 痞客邦 留言(0) 人氣()

 System.Diagnostics.Process.Start("http://tw.yahoo.com/?hpp=r1b");


createps 發表在 痞客邦 留言(0) 人氣()