Skip to main content
Journey Uncommon Logo
JourneyUncommon
easyC#value vs reference typesSingle-choice MCQ

A method declares its parameter as `in int x`. What does that mean for the caller?

void Print(in int x) => Console.WriteLine(x);