Browse by Tags

Related Posts

  • MSDN Ramp Up Program

    I just came across this: www.MyRampUp Ramp Up is a free, online, community-based program that can help users save time in learning Microsoft technology. The easy-to-access content (provided by subject-matter gurus) is specifically tailored to the Ramp Up program, and offered in a variety of forms (whitepaper...
    Posted to Paulo Morgado (Weblog) by Paulo Morgado on 11-07-2008, 12:00 AM
    Filed under: Community, MSDN, Microsoft, C#, VisualStudio, VisualBasic, VisualStudio2008, Training, SharePoint
  • PDC2008: Meet Me In Los Angeles

    It’s not the first time I try but, for one reason or another, this is the first time I will go to the PDC ( Microsoft ’s Professional Developers Conference). According to the site “The PDC is designed for leading-edge developers and software architects. If you’re interested in the future of the Microsoft...
    Posted to Paulo Morgado (Weblog) by Paulo Morgado on 09-04-2008, 12:00 AM
    Filed under: SoftDev, MSDN, Events, Microsoft, .NET, C#, PDC, PDC2008
  • StyleCop 4.3 Is Out

    The StyleCop team announced the release of a version 4.3 of the StyleCop tool . You can get it from here . On this version there are some bug fixes, new rules and documentation. Also in this version, the list of errors and warnings goes to the Errors List window like with the compilers. I whish that...
    Posted to Paulo Morgado (Weblog) by Paulo Morgado on 08-21-2008, 12:00 AM
    Filed under: Tools, SoftDev, MSDN, Microsoft, .NET, C#, CodingConventions
  • More On Another Way For Using The “using” Keyword

    In the past I presented another possible use for the using keyword: as hints on LINQ . I’ve been giving some thought about this lately and refined my proposal. var q = from person in personCollection using MyEnumerableExtensions group person by person.LastName into g using new MyOtherComparer () orderby...
    Posted to Paulo Morgado (Weblog) by Paulo Morgado on 08-11-2008, 12:00 AM
    Filed under: SoftDev, MSDN, Microsoft, .NET, C#, LINQ
  • How About Property Assignment And Collection Adding Like Object And Collection Initializers In C#?

    C# 3.0 introduced object and collection initializers . It is now easier to initialize objects or collections: var person = new Person { FirstName = "Paulo" , LastName = "Morgado" }; var persons = new List < Person > { new Person { FirstName = "Paulo" , LastName = "Morgado"...
    Posted to Paulo Morgado (Weblog) by Paulo Morgado on 08-11-2008, 12:00 AM
    Filed under: SoftDev, MSDN, Microsoft, .NET, C#
  • C# And Visual Basic Generate Different Expression Trees

    (This was pointed out to me by Frans Bouma and explained by Jon Skeet ) Imagine you have this set of classes: public class A { public virtual string P { get { return "A" ; } } } public class B : A { } public class C : B { public override string P { get { return "C" ; } } } And this class: public static...
    Posted to Paulo Morgado (Weblog) by Paulo Morgado on 08-04-2008, 12:00 AM
    Filed under: SoftDev, MSDN, Microsoft, .NET, C#, LINQ, VisualBasic
  • Stretching Type Inference

    Note: Code in italics is not actual C# 3.0 syntax. Local Variable Type Inference C# 3.0 brought us local variable type inference mainly because of LINQ . The output of a query can vary from an IEnumerable<T> or an IQueryable<T> to a single instance of T where T can even be a projection which...
    Posted to Paulo Morgado (Weblog) by Paulo Morgado on 04-22-2008, 12:00 AM
    Filed under: MSDN, Microsoft, .NET, C#, VisualStudio
  • TypeMock: How to Make Reflective Mocks More Natural

    Like I said before , this as been on the back of my mind for a while. A while back I introduced a way to get the MethodInfo of a method in a strongly typed way using LINQ , and that's how I'm going to make Reflective Mocks more Natural . Well, it's as easy as this: public static class MockExtender {...
    Posted to Paulo Morgado (Weblog) by Paulo Morgado on 01-31-2008, 12:00 AM
    Filed under: UnitTests, Testing, TypeMock, Tools, SoftDev, MVP, MSDN, Microsoft, .NET, C#, LINQ
  • Are Page Modules Still Useful In IIS7?

    With IIS7 a new transfer method is available in the HttpServerUtility class . It's the TransferRequest method . What this method is intended to do is behave like the HttpResponse.Redirect method without the penalty of traveling to the client and back . I said "is intended to behave" because it still...
    Posted to Paulo Morgado (Weblog) by Paulo Morgado on 10-15-2007, 12:00 AM
    Filed under: Community, ASP.NET, SoftDev, Web, MVP, MSDN, Microsoft, Architecture, .NET, PageModules, C#, IIS
  • You Don't Always Need Page Modules

    From my article on Page Modules some people might have gotten the wrong impression that this would be the only way to get a reference to the page given its path, but it isn't. You can use the System.Web.UI.PageParser.GetCompiledPageInstance method to get the reference to the page before calling the System...
    Posted to Paulo Morgado (Weblog) by Paulo Morgado on 09-16-2007, 12:00 AM
    Filed under: Community, ASP.NET, SoftDev, Web, MVP, MSDN, Microsoft, Architecture, .NET, PageModules, C#
Page 1 of 2 (18 items) 1 2 Next >