Castle.MonoRail.Framework.AssemblySourceInfo.NormalizeTemplateName C# (CSharp) Method

NormalizeTemplateName() private static method

Normalizes the name of the template.
private static NormalizeTemplateName ( string templateName ) : String
templateName string Name of the template.
return String
		private static String NormalizeTemplateName(string templateName)
		{
			return templateName.Replace('/', '.').Replace('\\', '.');
		}