Wely

wel = new Geeks();
See also: Other Geeks@INDC

Browse by Tags

All Tags » C# (RSS)
"var" Keyword, Extension Method, Lambda Expression, and LINQ
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...
Posted: Oct 09 2008, 12:43 AM by Wely | with no comments
Filed under: ,
Query and Join Certain Columns in Excel using LINQ
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,...
Posted: Sep 25 2008, 08:39 PM by Wely | with 7 comment(s)
Filed under: ,
The evolution of Delegate, Anonymous Method, Lambda Expression
Here's 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 of integer...
Posted: Dec 18 2007, 11:06 AM by Wely | with 3 comment(s)
Filed under: ,
A lot of # (Sharp)
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...
Posted: Sep 25 2007, 01:55 PM by Wely | with 1 comment(s)
Filed under: ,
Listen to C# 3.0 at the morning, Talk about C# 2.0 at the evening
Yesterday morning I join MSDN Day - Visual Studio 2008. The first session is the most interesting one that I've been waiting for times. Yeah C# 3.0. Mr Norman presented "what's new in C# 3.0". It was great. At the evening, I trained...
Posted: Sep 01 2007, 04:50 PM by Wely | with no comments
Filed under: ,
Have you use Generic’s collection?
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...
Posted: Jul 14 2007, 08:43 AM by Wely | with no comments
Filed under: ,
Back to ASP :-)
Most of people begin in ASP and VB6 before step in to .NET. I myself, vice versa. I had learned .NET first, then later came with VB6. Last week I began a Bina Nusantara Cooperate website ( http://www.binus.edu/ ) with ASP.NET and C# (was developed by...
Posted: May 09 2007, 08:11 AM by Wely | with 2 comment(s)
Filed under: , , ,
C# and .NET Training to Junior Binus Center Instructors
Yesterday, I was contacted by GM Operation Binus Center Head Office, Miss Natalia. Regarding to the opening of Binus Center Semarang , She requested me to develiver some programming focusing on C# to junior instructors. And I was very glad to accept....
Posted: Apr 20 2007, 07:48 AM by Wely | with 1 comment(s)
Filed under: , ,
A practical "polymorphism" example
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...
Posted: Mar 26 2007, 09:20 AM by Wely | with 3 comment(s)
Filed under: ,
Interface And Abstract Class
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...
Posted: Mar 21 2007, 08:31 AM by Wely | with 2 comment(s)
Filed under: ,