1.初學者
public class helloworld }
2. 改進的hello world
using system;
public class helloworld }
3. 命令列形式
using system;
public class helloworld }
4. 建構函式
using system;
public class helloworld
public static void main() }
5. 物件導向
using system;
public class helloworld
public static void main() }
6. 從其他類
using system;
public class helloworld }
public class helloworldhelperclass }
7. 繼承
abstract class helloworldbase
class helloworld : helloworldbase }
class helloworldimp }
8. 靜態建構函式
using system;
public class helloworld
void writehelloworld()
public static void main() }
9. 異常處理
using system;
public class helloworld
catch(indexoutofrangeexception e) }
} 10. 名字空間
using system;
namespace hellolibrary }
} }
------
using system;
using hellolibrary; }
} 11. 屬性
using system;
public class helloworld }
public static void main() }
12. **
using system;
class helloworld
static void main()
} 13. 使用屬性
#define debugging
using system;
using system.diagnostics;
public class helloworld : attribute
public static void main() }
14. 介面
using system;
inte***ce ihelloworld
public class helloworld : ihelloworld
public static void main() }
15. 動態hello world
using system;
using system.reflection;
namespace helloworldns
public static void main(string args)
; object nobj = activator.createinstance(hw, nctorparams);//, nctorparams);
// invoking a method
object nmthdparams = new object {};
string strhelloworld = (string) hw.invokemember("writehelloworld", bindingflags.default | bindingflags.invokemethod, null, nobj, nmthdparams);
console.writeline(strhelloworld);
} }
16. 不安全**hello world
using system;
public class helloworld }
public static void main()
; hw.writehelloworld(chrhelloworld);
} }
17. 使用interopservices
using system;
using system.runtime.interopservices;
class class1 }
分別用css3 js jQuery三種方法寫瀑布流
一 什麼是瀑布流 像下面的圖中,1234這四個區域都是同一個寬度的元素,並且佔據了一行的寬度。那麼第五塊元素想要插進頁面的時候,就選擇此時高度最小的第四列。依次類推。所以,我們可以發現,這裡的問題主要有以下幾個 接下來我們一一解決上面提出來的問題。首先,解決首行如何佈局。我們先用一個大的盒子裝載所有...