Castle.Core.Resource.AssemblyResource.ConvertToPath C# (CSharp) 메소드

ConvertToPath() 개인적인 메소드

private ConvertToPath ( String resource ) : string
resource String
리턴 string
		private string ConvertToPath(String resource)
		{
			string path = resource.Replace('.', '/');
			if (path[0] != '/')
			{
				path = string.Format("/{0}", path);
			}
			return path;
		}