When working with switch case, for example
I could use
const string FirstFloor = "lvl1", SecondFloor = "lvl2", ThirdFloor = "lvl3";
string ElavaetTo= "lvl1";
switch(ElavaetTo)
{
case FirstFloor:
Response.Redirect(FirstFloor + "Page.aspx")
break;
case SecondFloor:
Response.Redirect(SecondFloor + "Page.aspx")
break;
case ThirdFloor:
Response.Redirect(ThirdFloor + "Page.aspx")
break;
}
- Edited :
this is only an example of where constant string wil not work if placed in another class this is not a function / method i am trying to correct so it will work. thanks for your time, i am trying to base my methods , my approach...
This would work fine placed in the current or same class of the project but when all variables are stored outside this class instead of simply instantiating the class and methods only once :
fullClassName shrtNm = New fullClassName();
then you would like to call it as with
shrtNm.MethodName();
You need to go the 'Long way around' specially if not including the Namespace via using statement
and you would have to call it like:
string strnm = MyNameOfNameSpace.fullClassName.ConstantntStrName;
instead of:
string strnm = shrtNm.ConstantStrName;
Is there an alternative to using any type that will represent string values inside the IntelliSense in an easy way ?
I have tried to use
public enum Elavation
{
lvl1,
lvl2,
lvl3
}
but then you need to declare it as in the long example plus a .ToString()
Is there any alternative at all?
fullClassName,shrtNm,MethodName(),ConstantntStrName). And it is very unclear what you are trying to do or ask. – lc. Sep 28 '12 at 2:32main language=englishkind of guy , what i am asking is a solution for having a string type of values inside the IntelliSense to use on a Switch for example – LoneXcoder Sep 28 '12 at 2:41Response.Redirect(ElvaetTo + "Page.aspx"), so I fail to see what you're trying to accomplish) – lc. Sep 28 '12 at 2:47ToStringroute. ...Or you could use aDictionary<string,string>if you want to keep everything instring. I like the enums better though since it exhaustively lists (and thus restricts) the values you can have. But I don't know your use case so can't really comment much. (this is getting a bit too discussion-y for the Comments here, but I still don't know enough to post a full answer) – lc. Sep 28 '12 at 3:00