xsl Transform

2013년 01월 15일 golgol 0

C# 요일구하기

2013년 01월 02일 golgol 0

Use where to filer object list

2012년 12월 27일 golgol 0

using System; using System.Collections.Generic; using System.Linq; using System.Text; public class MainClass {     public static void Main() {         List<Product> products = GetProductList();         var soldOutProducts =             from p in products             where p.UnitsInStock == 0             select p;         Console.WriteLine(“Sold out products:”);         foreach (var product in soldOutProducts) {             Console.WriteLine(“{0} is sold out!”, product.ProductName);         }     }     static List<Product> GetProductList() {         List<Product> empTree = new List<Product>();         empTree.Add(new Product { ProductName = “A”, Category = “O”, UnitPrice = 12, UnitsInStock = 5, Total = 36, OrderDate = new DateTime(2005, 1, 1), Id = 1 });         empTree.Add(new Product { ProductName = “B”, Category = “O”, UnitPrice = 2, UnitsInStock = 4, Total = 35, OrderDate = new DateTime(2005, 1, 1), Id = 1 });         empTree.Add(new Product { ProductName = “C”, Category = “O”, UnitPrice = 112, UnitsInStock = 3, Total = 34, OrderDate = new DateTime(2005, 1, 1), Id = 1 });         empTree.Add(new Product { ProductName = “D”, Category = “O”, UnitPrice = 112, UnitsInStock = 0, Total = 33, OrderDate = new DateTime(2005, 1, 1), Id = 1 });         empTree.Add(new Product { ProductName = “E”, Category = “O”, UnitPrice = 1112, UnitsInStock = 2, Total = 32, OrderDate = new DateTime(2005, 1, 1), Id = 1 });         empTree.Add(new Product { ProductName = “F”, Category = “O”, UnitPrice = 11112, UnitsInStock = 0, Total = 31, OrderDate = new DateTime(2005, 1, 1), Id = 1 });         return empTree; […]

달력

2012년 11월 13일 golgol 0

JAN 1월 FEB 2월 MAR 3월 APR 4월 MAY 5월 JUN 6월 JUL 7월 AUG 8월 SEP 9월 OCT 10월 NOV 11월 DEC 12월