T4 sample:
<#
// Here is the model
Model = new []
{
P ("string", "ClientName"),
P ("string", "DealerID"),
};
#>
<#
// Here is the "view", this can be extracted into a ttinclude file and reused
#>
namespace MyNameSpace
{
using System.Web;
partial class SessionState
{
<#
foreach (var propertyDefinition in Model)
{
#>
public static <#=propertyDefinition.Type#> <#=propertyDefinition.Name#>
{
get
{
object obj = HttpContext.Current.Session["<#=propertyDefinition.SessionName#>"];
if (obj != null)
{
return (<#=propertyDefinition.Type#>)obj;
}
return null;
}
set
{
HttpContext.Current.Session["<#=propertyDefinition.SessionName#>"] = value;
}
}
<#
}
#>
}
}
<#+
PropertyDefinition[] Model = new PropertyDefinition[0];
class PropertyDefinition
{
public string Type;
public string Name;
public string SessionName
{
get
{
var name = Name ?? "";
if (name.Length == 0)
{
return name;
}
return char.ToLower(name[0]) + name.Substring(1);
}
}
}
static PropertyDefinition P (string type, string name)
{
return new PropertyDefinition
{
Type = type ?? "<NoType>",
Name = name ?? "<NoName>",
};
}
#>
It generates the following code:
namespace MyNameSpace
{
using System.Web;
partial class SessionState
{
public static string ClientName
{
get
{
object obj = HttpContext.Current.Session["clientName"];
if (obj != null)
{
return (string)obj;
}
return null;
}
set
{
HttpContext.Current.Session["clientName"] = value;
}
}
public static string DealerID
{
get
{
object obj = HttpContext.Current.Session["dealerID"];
if (obj != null)
{
return (string)obj;
}
return null;
}
set
{
HttpContext.Current.Session["dealerID"] = value;
}
}
}
}
If you do extract the "view" the model file would look like this:
<#
// Here is the model
Model = new []
{
P ("string", "ClientName"),
P ("string", "DealerID"),
};
#>
<#@ include file="$(SolutionDir)\GenerateSessionState.ttinclude"#>
Regarding CodeSnippets vs T4
Sometimes it is thought that CodeSnippets (and Resharper code templates) are equivalent to T4. They are not.
CodeSnippets (and others) promotes code redundancy and is basically CopyPaste programming with extra tool support.
T4 (or CodeSmith) are MetaProgramming Tools which helps you reduce code redundancy in the code you maintain (they might generate redundant code but you don't need to maintain that code).
A thought experiment around CodeSnippets; you have used a snippet extensively but you realize there's an issue in the code it generated.
How do you resolve it? You have to find all instances where you used the snippet and adjust the code but run into problems; how do you find all instances? How do you merge the Changes when someone modified the snippeted code?
With MetaProgramming Tools like T4 or CodeSmith you fix the template and regenerate the code.
This is why I die a litte bit inside everytime someone mentions code snippets.