/src/SampleLibrary/AOP/SampleClassWithMethodHavingOutParameters.cs
C# | 10 lines | 10 code | 0 blank | 0 comment | 0 complexity | 23762e08e588827d181666950a525c23 MD5 | raw file
1namespace SampleLibrary.AOP 2{ 3 public class SampleClassWithMethodHavingOutParameters 4 { 5 public void DoSomething(out int a) 6 { 7 a = 12345; 8 } 9 } 10}