每天進步1%,一年後的自己將比現在強37倍
世上沒有任何工作一開始就趣味盎然,與其找尋不存在的有趣工作,不如讓眼前的工作變得有趣比較快。 ——三木谷 浩史

目前分類:C# (34)

瀏覽方式: 標題列表 簡短摘要
http://news.cnblogs.com/n/549591

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

1.C# events vs. delegates

http://blog.monstuff.com/archives/000040.html


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

http://www.codeproject.com/Tips/314602/Making-IDisposable-implementation-easier


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

http://www.amazedsaint.com/2010/11/top-6-coding-standards-guideline.html


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

http://www.albahari.com/threading/


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

http://brijbhushan.net/2011/10/04/exploring-nullable-types-part-1/


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

http://kb.cnblogs.com/page/107604/


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

http://blogs.msdn.com/b/abhinaba/archive/2005/10/28/486173.aspx


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

wiki

http://en.wikipedia.org/wiki/Type_safety

 

. NET Type Safety

http://www.exforsys.com/tutorials/csharp/.-net-type-safety.html


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

http://msdn.microsoft.com/en-us/library/ms173142(v=vs.80).aspx


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

http://social.msdn.microsoft.com/Forums/en-US/csharplanguage/thread/a50a9cba-fa0c-412d-a1e7-02cc53fde172/

 


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

http://kb.cnblogs.com/page/107604/


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

http://kb.cnblogs.com/page/106722/


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

http://msdn.microsoft.com/en-us/library/ms173121.aspx


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

http://timl.net/2008/06/equals-and-referenceequals.html


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

http://www.dotnetperls.com/process-start


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

http://en.wikipedia.org/wiki/Serialization

.NET Framework

In the .NET languages, classes can be serialized and deserialized by adding the Serializable attribute to the class.

If new members are added to a serializable class, they can be tagged with the OptionalField attribute to allow previous versions of the object to be deserialized without error. This attribute affects only deserialization, and prevents the runtime from throwing an exception if a member is missing from the serialized stream. A member can also be marked with the NonSerialized attribute to indicate that it should not be serialized. This will allow the details of those members to be kept secret.

To modify the default deserialization (for example, to automatically initialize a member marked NonSerialized), the class must implement theIDeserializationCallback interface and define the IDeserializationCallback.OnDeserialization method.

Objects may be serialized in binary format for deserialization by other .NET applications. The framework also provides the SoapFormatter and XmlSerializer objects to support serialization in human-readable, cross-platform XML.

 


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

http://p2p.wrox.com/book-beginning-visual-c-35/


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

http://archive.cnblogs.com/a/1932438/


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

http://msdn.microsoft.com/en-us/goglobal/bb688122#ejb


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

1 2