如何通过Spring .NET配置静态类?
考虑以下课程:
static class Abc
{
public Interface xyz
{
get;
set;
}
public void Show()
{
xyz.show();
}
}
答案 0 :(得分:2)
也许解决方法可以帮助.. 这不是一个静态类,但它就像一个
namespace Nyan {
public class Util{
protected Util(){} //to avoid accidental instatiation
public static string DATETIMEFORMAT = "HH:mm:ss";
public static DateTime parseDate(string sDate)
{
return DateTime.ParseExact(sDate, DATETIMEFORMAT, CultureInfo.InvariantCulture);
}
}
}
<object id="Util" type="Nyan.Util, Nyan" singleton="true">
<property name="DATETIMEFORMAT" value="HH-mm-ss" />
</object
并且像任何其他静态类一样使用:
protected void Page_Load(object sender, EventArgs e)
{
DateTime sDate = Nyan.Util.parseDate("15-15-15"); //parsed with injected format
}