Archive for the ‘C#’ Category

Announcing The CodeSmith Generator 6.0 Visual Studio Template Editor

The CodeSmith Team is very excited to announce that CodeSmith Generator 6.0 will feature a built-in Visual Studio CodeSmith Generator Template Editor on top of our existing Visual Studio Integration. The team has been hard at work integrating a new Template Editor into our Visual Studio integration story. Without further ado: As you can see from [...]

dynamic, Why not?

In these days, people begin to expertise some new features in .NET 4.0. And I am same to them as well. One of features I like and write to this post is dynamic keyword. It is not new, at least in PHP, Python, Ruby… But in .NET world, I think it is new and ship [...]

Teched 2011 Slides

I know, I know….It’s been almost 2 weeks since Teched and I still haven’t posted the slide decks of my sessions I’ve been super busy with some exciting development on both Tellago and Tellago Studios but I finally got to it WCF Best Practices My session about WCF best practices focused on highlighting patterns and [...]

How to add <clear/> or <remove/> Elements through Scripting

I had a question recently where someone was trying to add < clear /> or < remove /> elements to a collection in their IIS 7 configuration settings. With that in mind, for today's blog I thought that I would discuss a couple of ways to add < clear /> and < remove /> elements [...]

Windows 8, HTML, .NET

You probably heard about Win8 today. The short story is that they showed a touch-centric shell on top of Win7. Microsoft want us to start building touch-centric apps for that shell using HTML5. I don’t have any doubts that existing apps will still run with no changes in the old shell. The main question from [...]

WPF: Simple “Busy” Overlay

I’m working on a WPF project that does some background processing which could take more than a few seconds.  Instead of a busy cursor, I want to give the user a simple “Please wait…” message via an overlay that appears on top of the form.  I found the solution in this stackoverflow question.  However, the [...]

My SharePoint 2007 Custom Membership Provider Adventure

Sometime last year I wanted to set up a SharePoint 2007 website for my family members to exchange information. That being said, I was using a custom membership provider, and I ran into a few issues while I was setting things up. I had kept detailed notes while I was configuring my server and troubleshooting [...]

Silverlight 5 Animations on the Composition Thread

Being a passionate front-end developer, I am constantly on the quest for creating the smoothest and most intuitive user experience possible. That’s why I was really excited when I heard about some of the performance feature [...] Read the rest of this article

Hostear servicio (WCF) en modo REST en aplicación de consola

Aca les voy a exponer como hostear un servicio web (WCF) en una aplicacion de consola. primero vamos a ver que es REST REST define un set de principios arquitectónicos por los cuales se diseñan servicios web haciendo foco en los recursos del sistema, incluyendo cómo se accede al estado de dichos recursos y cómo [...]

Leer XML con LINQ

Acá les dejo un codigo muy simple para la lectura de un archivo XML con LINQ Archivo XML <?xml version=”1.0″ encoding=”utf-8″ standalone=”yes”?> <!–Demo LINQ to XML–> <DatosGenerales> <DatosPersona id=”1″> <Nombre>Eder Lazaro</Nombre> <Edad>20</Edad> </DatosPersona> <DatosPersona id=”2″> <Nombre>Oscar Rodriguez</Nombre> <Edad>19</Edad> </DatosPersona> </DatosGenerales> Codigo en C# para la lectura del XML XDocument xmlFile = XDocument.Load(“Personal.xml”); var seleccionados = [...]

Subscribe to RSS Feed Seguinos en Twitter