/src/SampleLibrary/AOP/SampleClassWithMethodHavingOutParameters.cs
http://github.com/philiplaureano/LinFu · C# · 10 lines · 10 code · 0 blank · 0 comment · 0 complexity · 23762e08e588827d181666950a525c23 MD5 · raw file
- namespace SampleLibrary.AOP
- {
- public class SampleClassWithMethodHavingOutParameters
- {
- public void DoSomething(out int a)
- {
- a = 12345;
- }
- }
- }