Pages tagged c_:

ASP.NET MVC 1.0 Release Candidate Now Available - ScottGu's Blog
http://weblogs.asp.net/scottgu/archive/2009/01/27/asp-net-mvc-1-0-release-candidate-now-available.aspx
Create a Language Compiler for the .NET Framework Using C#
http://msdn.microsoft.com/en-us/magazine/cc136756.aspx

Compiler hackers are celebrities in the world of computer science. I've seen Anders Hejlsberg deliver a presentation at the Professional Developers Conference and then walk off stage to a herd of men and women asking him to sign books and pose for photographs. There's a certain intellectual mystique about individuals who dedicate their time to learning and understanding the ins and outs of lambda expressions, type systems, and assembly languages. Now, you too can share some of this glory by writing your own compiler for the Microsoft® .NET Framework.
iPhoneでC#アプリが審査に通るワケ - @IT
http://www.atmarkit.co.jp/news/200901/29/mono.html
機能縮小版VMを静的リンク
mono良さそうですな
Moserware: How .NET Regular Expressions Really Work
http://www.moserware.com/2009/03/how-net-regular-expressions-really-work.html
ASP.NET MVC Best Practices (Part 1) - Kazi Manzur Rashid's Blog
http://weblogs.asp.net/rashid/archive/2009/04/01/asp-net-mvc-best-practices-part-1.aspx
ASP.NET MVC Best Practices (Part 1) - Kazi Manzur Rashid's Blog
13 ASP.NET MVC extensibility points you have to know
http://codeclimber.net.nz/archive/2009/04/08/13-asp.net-mvc-extensibility-points-you-have-to-know.aspx
A guide to Silverlight 3 new features
http://timheuer.com/blog/archive/2009/03/18/silverlight-3-whats-new-a-guide.aspx
ASP.NET MVC Best Practices (Part 2) - Kazi Manzur Rashid's Blog
http://weblogs.asp.net/rashid/archive/2009/04/03/asp-net-mvc-best-practices-part-2.aspx
Kazi Manzur Rashid's Blog
This is the second part of the series and may be the last, till I find some thing new. My plan was to start with routing, controller, controller to model, controller to view and last of all the view, but some how I missed one important thing in routing, so I will begin with that in this post.
a
Kazi Manzur Rashid's Blog - Sharing Thoughts and Learning on Microsoft .NET Technology
ASP.NET MVC 1.0 - ScottGu's Blog
http://weblogs.asp.net/scottgu/archive/2009/04/01/asp-net-mvc-1-0.aspx
scott guthrie, pub 4/1/2009
ScottGu's Blog
tweetsharp - Google Code
http://code.google.com/p/tweetsharp/
History of the C family of languages
http://dotnetmasters.com/historyofcfamily.htm
History, the C family of languages
2009-07-04 - 当面C#と.NETな記録
http://d.hatena.ne.jp/siokoshou/20090704#p1
一番右端の立っているビット位置を求める「ものすごい」コード
うーん全然わかんねー…
crazy!
csharp-sqlite - Project Hosting on Google Code
http://code.google.com/p/csharp-sqlite/
Highscore - Programmieren lernen
http://www.highscore.de/
Sie finden auf dieser Website qualitativ hochwertige Bücher und Artikel, die Sie in der Aus- und Weiterbildung zum Software-Entwickler unterstützen. Alle Inhalte sind unter einer Creative-Commons Lizenz veröffentlicht und dürfen von Ihnen heruntergeladen, gedruckt und zu nicht-kommerziellen Zwecken verbreitet werden.
Kostenloses Buch zum Lernen von c#
Kostenlose Bücher zur Programmierung, u.a. C#, C++, Java
Main Page - MonoTouch from Novell
http://monotouch.net/
MonoTouch is the Mono edition for Apple's iPhone and Apple's iPod Touch devices.
K. Scott Allen : 6 Tips for ASP.NET MVC Model Binding
http://odetocode.com/Blogs/scott/archive/2009/04/27/12788.aspx
200 Page Manual on Inversion of Control (plus or minus 199) « Rob Conery
http://blog.wekeroad.com/smackdown/200-page-manual-on-inversion-of-control-plus-or-minus-199/
Excellent Read
Getting Started with Silverlight development
http://timheuer.com/blog/articles/getting-started-with-silverlight-development.aspx
GitSharp - eqqon
http://www.eqqon.com/index.php/GitSharp
Inspiration for API for versioning XBRL instance document
Concurrency Hazards: Solving 11 Likely Problems In Your Multithreaded Code
http://msdn.microsoft.com/en-us/magazine/cc817398.aspx
Solving 11 Likely Problems In Your Multithreaded Code
MSDN Library 2008/11 - Joe Duffy
Server-side programs have long had to deal with a fundamentally concurrent programming model, and as multicore processors become more commonplace, client-side programs will have to as well. Along with the addition of concurrency comes the responsibility for ensuring safety. In other words, programs must continue to achieve the same level of robustness and reliability in the face of large amounts of logical concurrency and ever-changing degrees of physical hardware parallelism.
Facebook SDK Overview
http://msdn.microsoft.com/en-us/windows/ee388574.aspx
微軟釋出Facebook SDK
Microsoft Toolkit to enable .NET developers to quickly and easily leverage the various features of the Facebook Platform.
This toolkit is provided as a Facebook Client Library similar to Facebook's PHP Client Library or Facebook's JavaScript library. The goal is to enable .NET developers to quickly and easily leverage the various features of the Facebook Platform. This toolkit has evolved over time with input from the community and from Microsoft. The latest release (v3.0) includes new architectural improvements and provides an asynchronous interface for using the toolkit from Silverlight and from WPF. The main entry point is the API (Facebook.Rest.Api) class in the Facebook.dll assembly. This class wraps the Facebook REST API and provides an easy to use interface for calling the different methods currently available in the Facebook API. We've also provided samples and tools for helping develop Facebook applications in the various .NET platforms including: ASP.NET, Silverlight, WPF and WinForms. Additionally, we've provided all the source code for the API, components, controls, and samples for you to exp
Functional Programming for Everyday .NET Development
http://msdn.microsoft.com/en-us/magazine/ee309512.aspx
How to detect and avoid memory and resources leaks in .NET applications
http://msdn.microsoft.com/en-us/library/ee658248.aspx
Despite what a lot of people believe, it's easy to introduce memory and resources leaks in .NET applications. The Garbage Collector, or GC for close friends, is not a magician who would completely relieve you from taking care of your memory and resources consumption. I'll explain in this article why memory leaks exist in .NET and how to avoid them. Don't worry, I won't focus here on the inner workings of the garbage collector and other advanced characteristics of memory and resources management in .NET. It's important to understand leaks and how to avoid them, especially since they are not the kind of things that is easy to detect automatically. Unit tests won't help here. And when your application crashes in production, you'll be in a rush looking for solutions. So, relax and take the time to learn more about this subject before it's too late. Table of Content * Introduction * Leaks? Resources? What do you mean? * How to detect leaks and find the leaking resources *
.NETでリークする要因。「Events, or the "lapsed listener" issue」は良く目にする。
CodeRun - Online IDE
http://www.coderun.com/ide/
Presentation Patterns - ScrewTurn Wiki
http://www.jeremydmiller.com/ppatterns/Default.aspx?Page=MainPage&AspxAutoDetectCookieSupport=1
""
From Jeremy Miller
Jeremy Miller's Presentation Patterns Wiki
60+ .NET libraries every developer should know about.
http://blog.webdistortion.com/2010/02/16/60-net-libraries-every-developer-should-know-about/
60 .Net Libraries
Yedda Twitter Library, FileHelpers Library, Elmah, Log4Net, Enterprise DT FTP Library, HtmlAgilityPack, OpenAuth Library etc etc
ASP.NET
Microsoft Visual Studio 2008 開発ガイドブック
http://www.microsoft.com/japan/msdn/vstudio/2008/tech/howto/VSGuide/
10 C# Shorthands that improve productivity | Martijn's C# Programming Blog
http://www.dijksterhuis.org/10-c-coding-shorthands-that-improve-productivity/
David Ebbo's blog : A new and improved ASP.NET MVC T4 template
http://blogs.msdn.com/davidebb/archive/2009/06/17/a-new-and-improved-asp-net-mvc-t4-template.aspx
Collection of .NET Framework and Visual Studio Posters
http://www.devcurry.com/2010/06/collection-of-net-framework-and-visual.html
Introducing “Razor” – a new view engine for ASP.NET - ScottGu's Blog
http://weblogs.asp.net/scottgu/archive/2010/07/02/introducing-razor.aspx
"Introducing Razor – a new view engine for ASP.NET" by @scottgu #tech #aspnetmvc http://bit.ly/biXgKC – Elijah Manor (elijahmanor) http://twitter.com/elijahmanor/statuses/17865462148
Code-First Development with Entity Framework 4 - ScottGu's Blog
http://weblogs.asp.net/scottgu/archive/2010/07/16/code-first-development-with-entity-framework-4.aspx