/src/SampleLibrary/Proxy/SampleClassWithPropertyInitializedInCtor.cs
http://github.com/philiplaureano/LinFu · C# · 17 lines · 15 code · 2 blank · 0 comment · 0 complexity · c2a2c854a366c06fff1c05b0712c7df1 MD5 · raw file
- namespace SampleLibrary.Proxy
- {
- public class SampleClassWithPropertyInitializedInCtor
- {
- public SampleClassWithPropertyInitializedInCtor()
- {
- SomeProp = "abcdefg";
- }
- public virtual string SomeProp { get; set; }
- public virtual void DoSomething(out int value)
- {
- value = 54321;
- }
- }
- }