Time of Update: 2018-12-03
下面就是excel批量上傳資料到資料庫一:UI層1.前台代碼:<a>上傳檔案(Excel):<asp:FileUpload ID="FileUpload1" runat="server" Width="237px" /></a> <a> <asp:Button ID="btnUp" runat="server" Text="匯入資料庫" Width="75px"
Time of Update: 2018-12-03
二、變數聲明:VB.Net:VB.net: Dim 變數名 as 類型名 [= 初值] [, 變數名 as 類型名 [= 初值] [, …]]C#:類型名 變數名 [= 初值] [, 變數名 [= 初值] [, 變數名 [= 初值] [, …]]];Java:類型名 變數名 [= 初值] [, 變數名 [= 初值] [, 變數名 [= 初值] [, …]]];樣本:VB.Net:Dim nValue as IntegerC#: int nValue;Java:int nValue;三、常量聲明:
Time of Update: 2018-12-03
1.變數聲名C# :int x;String s;String s1, s2;Object obj;Object obj = new Object();public String name;VB文法Dim x As IntegerDim s As StringDim s1, s2 As StringDim obj 'Implicitly ObjectDim obj As New Object()Public name As String 2語句C#:Response.Write("123456"
Time of Update: 2018-12-03
對C#委託及事件委託的理解委託的聲明public delegate void MyDelegate(string
Time of Update: 2018-12-03
http://hi.baidu.com/xiaoyear/blog/item/2f52e91310ad8422dc5401ba.html(轉)第一部分:C#入門1,可以為類或者命名空間指定別名例如(命名空間別名):using myAlias = myNameSpace1.myNameSpace2.Space32, C#的另外幾種開發工具:SharpDevelop / Snippet Compiler C#返編譯軟體:.NET Reflector C#單元測試工具:NUnit
Time of Update: 2018-12-03
C# 中實現 foreach 功能 1. MySplit 類 ////// MySplit 類 /// public class MySplit : IEnumerable { private string[] elements; public MySplit(string source, char[] delimiters) { elements = source.Split(delimiters); } IEnumerator IEnumerable.GetEnumerator() {
Time of Update: 2018-12-03
C# 2.0引入了很多語言擴充,最重要的就是泛型(Generics)、匿名方法(Anonymous Methods)、迭代器(Iterators)和不完全類型(Partial Types)。• 泛型允許類、結構、介面、委託和方法通過它們所存貯和操作的資料的類型來參數化。泛型是很有用的,因為它提供了更為強大的編譯期間類型檢查,需要更少的資料類型之間的顯式轉換,並且減少了對裝箱操作的需要和運行時的類型檢查。•
Time of Update: 2018-12-03
文/Peter Jiang(譯自newlc.com) Borland C++BuilderX是一個優秀的Symbian開發環境.可是它在預設情況下無法調試基礎控制台程式,我有一個辦法可以讓它成為可能,但需要對你的項目配置做一些變動.Alt+F7或是使用Project/Project.菜單來開啟下面的視窗. 選擇Make&Run或Run選項並編輯它.進入Project配置視窗: 把模擬器路徑中的EPOC.exe字串改成你應用程式的名字.見圖上的紅色圓圈.OK,現在可以了!
Time of Update: 2018-12-03
文/Peter Jiang(譯自newlc.com) 現在使用Visual Studio有一個令人很不爽的地方,就是處理描述符,因為你不能直接顯示它們的內容(只能在模擬器的視窗裡看到).這裡有一個小技巧將可以讓你顯示Symbian描述符的內容. 為了達到這個目的, Microsoft Visual Studio中的"Auto Expand"將起到重要的作用.它可以讓調試器定製規則來顯示使用者資料的內容.可以手動設定AutoExp.dat來達到我們的目的.這個檔案的位置在C:/Program
Time of Update: 2018-12-03
之前很鬱悶,遍尋不著得到當前項目路徑的方法(間接可以找到,但很彆扭),今天偶然看到個blog,轉載一下 //擷取包含清單的已負載檔案的路徑或 UNC 位置。 public static string sApplicationPath = Assembly.GetExecutingAssembly ( ).Location; //result: X:/xxx/xxx/xxx.dll (.dll檔案所在的目錄+.dll檔案名稱)
Time of Update: 2018-12-03
using System;using System.Collections.Generic;using System.Text;namespace 委託{ class 委託排序 { private delegate bool EqualsMyContent(Object lobj, Object robj); static void Main(string[] args) { Person[] pers = new Pe
Time of Update: 2018-12-03
checked和unchecked操作符用於整型算術運算時控制當前環境中的溢出檢查。下列運算參與了checked和unchecked檢查(運算元均為整數):1) 預定義的++和――一元運算子。2) 預定義的-一元運算子。3) 預定義的+、-、×、/等二元操作符。4) 從一種整型到另一種整型的顯示資料轉換。當上述整型運算產生一個目標類型無法表示的大數時,可以有相應的處理方式:(一)使用checked若運算是常量運算式,則產生編譯錯誤:The operation overflows at
Time of Update: 2018-12-03
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace CSharp基礎{ public delegate void ActionEventHandler(object sender, ActionCancelEventArgs args); class 事件模型 { public static void Main() {
Time of Update: 2018-12-03
using System;using System.Collections.Generic;using System.Text;namespace CountStrDemo{ class 比較子重載 { public static void Main(string[] args) { // 比較預算符有6個,3對 分別是: // == != // > <
Time of Update: 2018-12-03
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;namespace 多線程{ class 等待控制代碼 { public delegate int TakesAwhileDel(int data, int ms); static void Main(string[] args) {
Time of Update: 2018-12-03
using System;using System.Collections.Generic;using System.Text;namespace 字串{ class Program { static void Main( string[] args ) { //字串頻繁分配記憶體示範(不推薦) //以下代碼將字串全總向後移一個值,原來的字串將會被替換成新加密後的.
Time of Update: 2018-12-03
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;namespace 多線程{ class 線程傳資料 { public static void Main() { //Console.WriteLine( "主線程輸出" ) ; //Thread t1 =
Time of Update: 2018-12-03
using System;using System.Collections.Generic;using System.Text;//使用者自訂轉換 //所有的使用者自訂轉換都是靜態,要使用static關鍵字 //使用者自訂轉換分顯示和隱示,它們用implicit(隱式轉換)或 explicit(顯示轉換)關鍵字聲明。 //static 訪問修辭符 轉換修辭符 operator 轉換類型(參數) namespace CountStrDemo{ class 自訂類型轉換 {
Time of Update: 2018-12-03
using System;using System.Collections.Generic;using System.Text;namespace CountStrDemo{ class 傳回值重載 { public static void Main(string[] args) { //您看看這調用處,那叫一個完美 MyReturnDemo obj = new MyReturnDemo( "aladdin"
Time of Update: 2018-12-03