Wely Lau
Journey to the cloud
See also:
Other Geeks@INDC
Sign in
|
Join
|
Help
Home
Contact
About
RSS
Atom
Comments RSS
Search
Recent Posts
Migrating My Blog to http://wely-lau.net (Wordpress on Windows Azure)
A Deep Look inside Windows Azure Virtual Machines
Various Options to Manage Session State in Windows Azure
Managing Timezone in SQL Azure
Setting Timezone in Windows Azure
Deploying and Monitoring Windows Azure Application
SQL Azure Diagnostic Tool
Combining Web and Worker Role by Utilizing Worker Role Concept
Establishing Remote Desktop to Windows Azure Instance – Part 2
Establishing Remote Desktop to Windows Azure Instance – Part 1
Tags
.NET
.NET 3.0
.NET 3.5
.NET 3.5 SP1
.NET 4.0
.NET Programming Curriculum
Ajax
Architecture
ASP.NET
ASP.NET 4.0
Azure AppFabric
Azure Connect How-to
Azure CTP
AzureUG.SG
Bandung
Binus
BizSpark
C#
C# 3.0
C# 4.0
Certificaction
Community Sever
Competition
Design Pattern
Developer Kit
DLR
Dynamic Data
eBook
Enterprise Library
Event
Excel
Expression
Geeks Portal
INDC
Internet Explorer 8
LibraLINQ
LINQ
LINQ to SQL
Logo
MEF
Migration to Windows Azure
Miscellaneous
MSDN
MSDN Day
MSDN Flash
MUGI
MVP
NonTechnical
NTU
Office 2007
OpenXML
Parallel Extension
Parallel Extension Series
Pattern and Practices
Personal
Presentation Tips
Ramp Up
Refactoring
Resources
SharePoint
Silverlight
SQL Azure
SubSonic
TechNet
TechNet Flash
Technology
Tester
Training Kit
VB.NET
Visual Basic
Visual Studio 2010
VS 2008
VSTO
VSTS
Web
Windows 7
Windows Azure
Windows Azure Connect
Windows Azure Platform
Windows Communication Foundation
Windows Live
Windows Management Instrumetation
Windows Presentation Foundation
Word
Workflow Foundation
WSS-Id
News
Navigation
Home
Blogs
Videos
Curriculum
eBooks
Jobs
Forum
Downloads
Archives
September 2011 (2)
August 2011 (1)
July 2011 (1)
June 2011 (1)
May 2011 (2)
April 2011 (4)
March 2011 (1)
February 2011 (3)
January 2011 (2)
December 2010 (7)
November 2010 (3)
October 2010 (5)
September 2010 (4)
August 2010 (5)
June 2010 (1)
May 2010 (2)
April 2010 (4)
March 2010 (2)
February 2010 (2)
January 2010 (8)
October 2009 (1)
September 2009 (1)
August 2009 (1)
July 2009 (4)
June 2009 (10)
May 2009 (2)
April 2009 (10)
March 2009 (7)
February 2009 (7)
January 2009 (9)
December 2008 (3)
November 2008 (6)
October 2008 (9)
September 2008 (13)
August 2008 (3)
July 2008 (3)
June 2008 (6)
May 2008 (5)
April 2008 (2)
January 2008 (1)
December 2007 (2)
November 2007 (1)
October 2007 (2)
September 2007 (2)
August 2007 (1)
July 2007 (1)
June 2007 (2)
March 2007 (3)
Microsoft Resources
Silverlight
Windows Client .NET
ASP.NET
IIS
.NET Fx 3.0
Local Resources
INDC
BinaISV
WSS Indonesia
SQL Server Indo
Other Resources
4 Guys from Rolla
CodePlex
Code Project
Browse by Tags
All Tags
»
C#
(
RSS
)
.NET
C# 3.0
Excel
Miscellaneous
"var" Keyword, Extension Method, Lambda Expression, and LINQ
by
Wely
Post ini saya pindahkan dari jawaban saya di milis http://dotnet.netindonesia.net/?0::38980 berikut skenario nya. Let's start. Keyword “var” yang biasa dipake di Local Variable Type Inference / Implicitly Type Local Variables adalah sebuah keyword...
Filed under:
C#
,
C# 3.0
Query and Join Certain Columns in Excel using LINQ
by
Wely
This post is actually related on my work The problem Suppose that I have two tables in excel file like this. I want to have particular records as the result of intersection between those two tables. For illustration, see the Venn Diagram below! Yeah,...
Filed under:
C#
,
Excel
The evolution of Delegate, Anonymous Method, Lambda Expression
by
Wely
In this opportunity, I am going to write something about the evolution of Delegate, Anonymous Method, till Lambda Expression. Here's I will use a build in delegate, Predicate<T> to give the example. My example is simple. There's a collection...
Filed under:
.NET
,
C#
,
C# 3.0
A lot of # (Sharp)
by
Wely
While reading C# at Wikipedia http://en.wikipedia.org/wiki/C_Sharp , di bawahnya ada External link, ada box .NET Framework (Microsoft). Dalam box itu ada beberapa reference ke link seputar technology Microsoft dikategorikan masing-masing. Saya perhatikan...
Filed under:
C#
,
Miscellaneous
Have you use Generic’s collection?
by
Wely
We often need collection in our programming. To implement collection, we have two choices: fixed-length collection which is familiarly "array" and dynamic length collection. One of the popular dynamic collections is ArrayList. ArrayList (actually...
Filed under:
.NET
,
C#
A practical "polymorphism" example
by
Wely
In my last post, I described what interface and abstract class are, how to create and use them. But, the question is “Why do we need to use interface or abstract class?”, “Is it useful?”, “What if we don’t use them...
Filed under:
.NET
,
C#
Interface VS Abstract Class
by
Wely
There are a lot of confusions, misconception, and misuses about Interface and Abstract Class. Actually the objectives of them are doing polymorphism. Interface Interface is a type perspective like class or structure. You cannot instantiate an object from...
Filed under:
.NET
,
C#