Constant string

  • Thread starter Thread starter JLobato
  • Start date Start date
J

JLobato

Hi,

Which could be a good solution for implementing a set of
constant strings, like messatges, default strings for
configuration and so on.

Thanks
 
Maybe 1 of these can work
Public Class MyClass
{
const string message = "Message";
static readonly string configuration = "My connection string";
}
 
Back
Top