PageRenderTime 35ms CodeModel.GetById 23ms RepoModel.GetById 1ms app.codeStats 0ms

/src/SampleLibrary/AOP/SampleClassWithReadOnlyField.cs

http://github.com/philiplaureano/LinFu
C# | 7 lines | 7 code | 0 blank | 0 comment | 0 complexity | b426c74420602e0fd0d2a7955557c8bb MD5 | raw file
  1. namespace SampleLibrary.AOP
  2. {
  3. public class SampleClassWithReadOnlyField
  4. {
  5. public string Value { get; set; } = "freeze!";
  6. }
  7. }