Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# Variable Name To String [duplicate]

Tags:

c#

I have variable

public string MyVariable;

I need use name of variable as string. Example:

var a = MyVariable.NameVariable();
// a = "MyVariable"

How i may to do this?

I would like to create your miniORM (NHibernate is too heavy and requires a separate library). At the moment the problem is that I have to point out a bunch of constants. For example:

public const string FieldIdRules = "idRules"

And then to make transactions in relation samonapisannom profiler. I saw that Hibernate does not need to specify the text value (for the ratio of fields). I want to implement the same.

Sorry my bad english

like image 808
user2071747 Avatar asked Feb 27 '13 04:02

user2071747


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

Is C language easy?

Compared to other languages—like Java, PHP, or C#—C is a relatively simple language to learn for anyone just starting to learn computer programming because of its limited number of keywords.

What is the full name of C?

In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr.


2 Answers

Hacky approach, you can get via Expression:

string myVariable = string.Empty;
Expression<Func<object>> expression = () => myVariable;

string name = (expression.Body as MemberExpression).Member.Name;
like image 143
cuongle Avatar answered Sep 22 '22 23:09

cuongle


If you can access a variable by name, you already have its name, so type "MyVariable".

If you’ve reassigned it, this is not possible. Values don’t keep a history of variable names somewhere.


So in order to handle field to column mappings, I would suggest a Dictionary. Reflection is a possibility, but is needlessly complicated for a simple task like that.

like image 23
Ry- Avatar answered Sep 22 '22 23:09

Ry-