Memory allocation for const in C#
Posted
by n0vic3c0d3r
on Stack Overflow
See other posts from Stack Overflow
or by n0vic3c0d3r
Published on 2010-04-13T09:28:15Z
Indexed on
2010/04/13
9:32 UTC
Read the original article
Hit count: 199
c#
How is memory allocated when I use:
public class MyClass
{
public const string myEVENT = "Event";
//Other code
}
© Stack Overflow or respective owner