Box`1.cs
12 lines
| 235 B
| text/x-csharp
|
CSharpLexer
cin
|
r289 | namespace Implab.ServiceHost.Test.Mock { | |
public class Box<T> : IBox<T> { | |||
public string Name { get; set; } | |||
public T Value { get; set; } | |||
public T GetBoxValue() { | |||
return Value; | |||
} | |||
} | |||
} |