<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>.net on karlgrz</title>
    <link>https://karlgrz.com/tags/.net/</link>
    <description>Recent content in .net on karlgrz</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en-us</language>
    <lastBuildDate>Wed, 31 Jul 2013 03:29:22 +0000</lastBuildDate><atom:link href="https://karlgrz.com/tags/.net/index.xml" rel="self" type="application/rss+xml" />
    <item>
      <title>One Reason I Like LINQ in C#</title>
      <link>https://karlgrz.com/one-reason-i-like-linq-in-c/</link>
      <pubDate>Wed, 31 Jul 2013 03:29:22 +0000</pubDate>
      
      <guid>https://karlgrz.com/one-reason-i-like-linq-in-c/</guid>
      <description>This is one of my favorite things about LINQ in C#. This code:
var nonBlank = false; foreach (var byteval in arrayOfBytes) { if (byteval &amp;lt;= 0) continue; nonBlank = true; break; } Becomes this code:
var nonBlank = arrayOfBytes.Any(byteval =&amp;gt; byteval &amp;gt; 0); </description>
    </item>
    
    <item>
      <title>Problem With Running an MVC3 Project on IIS After Opening and Building in Visual Studio 2012</title>
      <link>https://karlgrz.com/problem-with-running-an-mvc3-project-on-iis-after-opening-and-building-in-visual-studio-2012/</link>
      <pubDate>Wed, 23 Jan 2013 01:44:06 +0000</pubDate>
      
      <guid>https://karlgrz.com/problem-with-running-an-mvc3-project-on-iis-after-opening-and-building-in-visual-studio-2012/</guid>
      <description>I was having trouble running a .NET 4.0, MVC3 web application locally on IIS after building in VS2012. The unit tests would pass, all projects would build successfully, and it would even run from Cassini, but something was just not working properly on IIS. This project SPECIFICALLY references MVC3 assemblies that are included in a packages folder in the project, so I didn&amp;rsquo;t think it was MVC, but all signs were pointing to that.</description>
    </item>
    
    <item>
      <title>Programmatically Uploading Videos to YouTube Using C#</title>
      <link>https://karlgrz.com/programmatically-uploading-videos-to-youtube-using-c/</link>
      <pubDate>Tue, 02 Mar 2010 17:59:00 +0000</pubDate>
      
      <guid>https://karlgrz.com/programmatically-uploading-videos-to-youtube-using-c/</guid>
      <description>Recently I spent some time investigating the Google Data .NET Client library. Specifically, I was interested in the YouTube Data API. What I wanted to do was programmatically upload a video file to my YouTube account. I ran into a couple of (minor) speed bumps along the way, and noticed there were a few things that weren&amp;rsquo;t as clear as they should have been. Hopefully I can clarify the problems I encountered, in case future developers run into the same trip ups.</description>
    </item>
    
  </channel>
</rss>
