陳廣老師的C#程式設計入門與執行個體視頻教程(線上+下載)

轉載自eNet網路學院:http://www.enet.com.cn/eschool/video/c  初學者在學習程式的過程中很重要的一個學習方法就是讀原始碼,但如果對語言本身的瞭解不夠,在閱讀源碼的過程中會遇到很大的困難。磨刀不誤砍柴功,製作《C#語言參考視頻》教程的目的在於協助初學者打下堅實的語言基礎,降低程式學習的難度。本教程由廣西機電職業技術學院的陳廣老師錄製,供學生課後自學用,教程以手把手的方式,通過簡單一實例入手,層層深入,對C#語言進行了詳細而全面地講解。本教程面向的對象為:1、

C# 一個例子,北大青鳥的。自己變了下。

using System;using System.Collections.Generic;using System.Text; namespace PrintNumbers{    ///<summary>    ///畫一個松數.    ///</summary>    ///    public class DrawTree    {        int Width;              public int Width1        {         

C# 系列,這裡是C#進階編程裡面的,裡面用了個索引符,沒有明白到是啥意思哦。今天太晚了不想弄了。

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Collections;namespace ConsoleApplication1{    public class Studuent : IEnumerable    {        private object[] temp = new object[100];        private

C# ArrayList的幾個操作

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Collections;namespace ConsoleApplication1{ public class MyTest : IEnumerator { public object Current { get { return null; }

C# HashTable的一個例子.

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Collections.Specialized;using System.Collections;namespace ConsoleApplication1 //這個小程式是關於hashtable的,自己感覺就是相當於屬性。{ public class Employeedata //一個員工資料類

C# 一個用到WPF 和 反射的例子.

///WPF 檔案裡面是建有一個button,一個TextBox,和一個TextBlockusing System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Windows;using System.Windows.Controls;using System.Windows.Data;using System.Windows.Documents;using

C#改變控制項顏色的一些基本方法

using System.Drawing.Imaging;           方法1            string a = "#555555";             this.button1.BackColor = System.Drawing.Color.FromArgb(0,0,0);方法2            this.button1.BackColor =System.Drawing.Color.FromArgb(                     

C# 類比一個手機儲值的過程,還不完美。

using System;using System.Collections.Generic;using System.Text; namespace AddMoney{    /// <summary>    /// 此樣本是類比手機沖值過程    /// </summary>    class Program    {        static void Main(string[] args)        {           

c# 調用外部程式

//本來看似非常簡單的。。程式是一個介面。左邊一個提示有個 checkbox 提示使用者"我知道了,請不要再顯示",右邊是運行QQ的一個按鈕。但是弄的時候弄了四個小時左右。經常是調試的時候是對的,但是有的時候點了按鈕過後沒有反映,//不能夠運行外部程,//Events() 方法過後好些,但是偶爾還是會出現這情況,最後再加上。 System.Threading.Thread.Sleep(2000); 得到解決。。目前還沒有扯拐。public static void RunQQ()        {

C# 解構函式

using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleApplication1{ //public class MyTest : IDisposable //{ // #region IDisposable 成員 // public MyTest() // { // } //

C# 泛型相關.

using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Collections;using System.Collections.Specialized;namespace ConsoleApplication1{    class Program    {        static void Main(string[] args)        {      

C# Sql 資料庫 SQL驗證登陸。

平台:XP3 + Vs 2008 專業版,專門下的SQL Server Management Studio Express.到現在也沒有明白到登陸的時候一個windows驗證和SQL 驗證的區別。  在裡面建表過後,如果要選擇成SQL 驗證。首先把表的屬性裡面安全性改為SQL和windows混合模式。登陸名裡面建立一個使用者,把強制密碼到期去掉。 //項目裡面調試的時候調用即時視窗。    public partial class Register : System.Web.UI.Page   

C# 擷取硬體.

 using System;using System.Management; //還需要引用;using System.Collections;using System.Collections.Specialized;using System.Text; namespace Rainsoft.Management{    #region WMIPath    public enum WMIPath    {        // 硬體         Win32_Processor, //

C# Head.First 裡面的例子 (中文名:深入淺出C#)

//看了原來的例子,我真的是弄昏了。。結果還是按照自己寫的。// DinnerParty.CS 源碼: using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace DinnerPary.HeadFirst.Book{    public class DinnterParty    {        public const int CostOfFoodPerson = 25

C# 日期加一天

date_begin.ToString()!="0"||date_effect.ToString()!="0"  分別是資料庫查詢時  開始-結束  日期//都為string 類型 預設為0  if (date_begin.ToString()!="0"||date_effect.ToString()!="0")        {            if (date_begin.ToString() == date_effect.ToString())            {       

C# 多維陣列.

using System;using System.Collections.Generic;using System.Linq;using System.Text; namespace ConsoleApplication1{    class Program    {        static void Main(string[] args)        {            int[][] myArr = new int[2][];            myArr[0] =

C#加密

using System;using System.Text;using System.IO;namespace 這是一個加密檔案的程式{    public class _輸入你的加密口令    {        private string password;        public string Password        {            get { return password; }            set { password = value; }      

C# 歌德巴哈猜想。

using System;using System.Collections.Generic;using System.Linq;using System.Text; namespace ConsoleApplication2{    classProgram    {        staticvoid Main(string[]args)        {            Console.WriteLine("請輸入一個數大於6");            intintNum =

C# 簡單的例子。

using System;using System.Collections.Generic;using System.Text;using System.Collections;namespace MyLunch{    /// <summary>    /// switch的用法    /// </summary>    ///    public class Number    {         ArrayList list = new ArrayList();  

C# Regex例子。。沒有完整。

c#Regex用法大全 只能輸入數字:"^[0-9]*$"。只能輸入n位的數字:"^\d{n}$"。只能輸入至少n位的數字:"^\d{n,}$"。只能輸入m~n位的數字:。"^\d{m,n}$"只能輸入零和非零開頭的數字:"^(0|[1-9][0-9]*)$"。只能輸入有兩位小數的正實數:"^[0-9]+(.[0-9]{2})?$"。只能輸入有1~3位小數的正實數:"^[0-9]+(.[0-9]{1,3})?$"。只能輸入非零的正整數:"^\+?[1-9][0-9]*$"。只能輸入非零的負整數:

總頁數: 4314 1 .... 1048 1049 1050 1051 1052 .... 4314 Go to: 前往

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.