JustMockLite/Telerik.JustMock.DemoLib/FooInheritISerializable.cs

20 строки
465 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
namespace Telerik.JustMock.DemoLib
{
public class FooInheritISerializable : ISerializable
{
public virtual int Value { get; set; }
public void GetObjectData(SerializationInfo info, StreamingContext context)
{
throw new NotImplementedException();
}
}
}