G
Guest
Platform: WinCE 4.2, C#
Newbie question:
Is there any difference in memory footprint between the 2 following
declarations:
public static Color FG_COLOR = Color.FromArgb(100,100,30);
public static Color FgColor
{
get {return Color.FromArgb(100,100,30);}
}
TIA,
Mark
Newbie question:
Is there any difference in memory footprint between the 2 following
declarations:
public static Color FG_COLOR = Color.FromArgb(100,100,30);
public static Color FgColor
{
get {return Color.FromArgb(100,100,30);}
}
TIA,
Mark