I have a list of values which i am maintaining like this,
public enum DisplayUnits
{
Vertical = 0,
Horizontal = 1,
Track = 2,
Empty = 3,
}
public static string DisplayUnitsImage(DisplayUnits unit)
{
switch (unit)
{
case DisplayUnits.Vertical:
return @"/image1";
case DisplayUnits.Horizontal:
return @"/image2";
case DisplayUnits.Track:
return @"/image3";
case DisplayUnits.Empty:
return @"/image4";
default:
return @"/image5";
}
}
public static string DisplayUnitID(DisplayUnits unit)
{
switch (unit)
{
case DisplayUnits.Vertical:
return @"1234";
case DisplayUnits.Horizontal:
return @"1235";
case DisplayUnits.Track:
return @"1236";
case DisplayUnits.Empty:
return @"1237";
default:
return @"1238";
}
}
For retrieving the image path i ll call the method by passing the enum.
Can it be written in simpler manner because for adding one value i need to change in three places?
Using of Tuple is recommended in this context?
