本文介绍了如何别名在我的Razor视图using指令类型?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要别名使用使用指令,通常像这样做了类型:

I need to alias a type with a using directive, which is normally done like so:

using LocalResources = Resources.Admin.SomeResource;

我怎样才能做到这一点我的Razor视图里面,这样我就可以使用它像 @ LocalResources.FirstName

推荐答案

下面是如何

@Using File = System.IO.File //at the top of the page then

//使用@file任何地方在CSHTML页。

// use @File any where in the cshtml page.

这篇关于如何别名在我的Razor视图using指令类型?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-20 02:25