I continuously find myself having to write timed windows services that poll outside queues or run timed processes.I consequently have a fairly robust template by which to do this, but I find that ever
I\'ve got the following classes: public class SupplierCategory : IEquatable<SupplierCategory> { public string Name { get; set; }
I have a Person class, with Name and AreaID properties. public class Person { public string Name; public int AreaID;
I\'m planning to write a C# 3.0 compiler in C#. Where can I get th开发者_开发问答e grammar for parser generation?
Using Microsoft interOp objects, I can programmatically print a Word or Excel document. Is there any simpler and uniform way to programmatically print all types of documents (.txt, .doc, .开发者_Stac
I have the following section of code in an app that I am writing: ... String[] Columns = Regex.Split(CurrentLine, Delimeter);
I\'m new to Generics implementation and need inputs on 2 issues I face : I have an interface ICommand defined as :
I have S开发者_如何学运维QL database as follows alt text http://img97.imageshack.us/img97/5774/dbimage.jpg
So, I have a bug to remove foreach (XElement x in items.Elements(\"x\")) { XElement result = webservice.method(x);
How to cast/convert a var type to a List type? This code snippet is giving me error: List<Student> studentCollection = Student.Get();