2
votes
2answers
54 views
Pass ‘value type’ on stack by ref - memory footprint
What happens in memory when we pass a value type - which has been stored on the stack - by reference?
A temp value/pointer must be created somewhere to change the origninal value when the m …
1
vote
Should I agree to ban the “using” directive from my c# projects?
you can also use aliases...
using diagAlias = System.Diagnostics;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
…
