get string from assemble in .NET

简介:   using System; using System.Resources;   public staticstring GetCsharpResource() {        ResourceManager r...

 

using System;

using System.Resources;

 

public staticstring GetCsharpResource()

{

       ResourceManager rm = newResourceManager(

"The namespace name in <<global ::System.Resources.ResourceManager>> in <<[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]>>",

Assembly.LoadFrom(@"C:\***\test.dll"));

String str = rm.GetString("var1");

       return str;

}

 

Note: the assemble should have .resx file in its source project, you can store some 1 to 1 key and value in the resource file

目录
相关文章
|
4月前
|
API
【Azure Key Vault】.NET 代码如何访问中国区的Key Vault中的机密信息(Get/Set Secret)
【Azure Key Vault】.NET 代码如何访问中国区的Key Vault中的机密信息(Get/Set Secret)
|
4月前
|
SQL
Typecho——Argument 1 passed to Typecho\Router::get() must be of the type string
Typecho——Argument 1 passed to Typecho\Router::get() must be of the type string
52 0
|
7月前
|
JavaScript
GET http://192.168.2.198:8080/sockjs-node/info?t=1626862752216 net::ERR_CONNECTION_TIMED_OUT
GET http://192.168.2.198:8080/sockjs-node/info?t=1626862752216 net::ERR_CONNECTION_TIMED_OUT
80 0
|
JavaScript 前端开发 API
Vue报错:sockjs.js?9be2:1627 GET http://192.168.43.88:8080/sockjs-node/info?t=1631603986586 net::ERR_CO
Vue报错:sockjs.js?9be2:1627 GET http://192.168.43.88:8080/sockjs-node/info?t=1631603986586 net::ERR_CO
|
人工智能
CF1660C Get an Even String(贪心)
CF1660C Get an Even String(贪心)
103 0
|
开发框架 监控 算法
.NET开源5年了,这些宝藏你还没get?
.NET开源5年了,这些宝藏你还没get?
247 0
.NET开源5年了,这些宝藏你还没get?
|
NoSQL Java Redis
Spring框架(SpringBoot)中redis报错(Could not get a resource from the pool、java.net.SocketTimeoutException)
Spring框架(SpringBoot)中redis报错 在使用SpringBoot框架的时候,Spring一直会报两个特别纠结特别的烦的错误。
10127 2
|
XML .NET API
用ASP.NET Core 2.0 建立规范的 REST API -- GET 和 POST
本文所需的一些预备知识可以看这里: http://www.cnblogs.com/cgzl/p/9010978.html 和 http://www.cnblogs.com/cgzl/p/9019314.
1373 0
|
Java C# 算法
.NET面试题解析(03)-string与字符串操作
转自:   常见面试题目: 1.字符串是引用类型类型还是值类型? 2.在字符串连接处理中,最好采用什么方式,理由是什么? 3.使用 StringBuilder时,需要注意些什么问题? 4.以下代码执行后内存中会存在多少个字符串?分别是什么?输出结果是什么?为什么呢? string st1 = "123" + "abc"; string st2 = "123abc"; Console.
1032 0
|
存储 NoSQL Redis
.Net Core下 Redis的String Hash List Set和Sorted Set的例子
1.新建一个.Net Core控制台应用程序,用Nuget导入驱动 打开程序包管理控制台, 执行以下代码。   PM> Install-Package ServiceStack.Redis 即可添加Redis的引用。
1173 0