CSLA.NET
5.4.2
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
ICloneable.cs
Go to the documentation of this file.
1
#if NETFX_CORE
2
//-----------------------------------------------------------------------
3
// <copyright file="ICloneable.cs" company="Marimer LLC">
4
// Copyright (c) Marimer LLC. All rights reserved.
5
// Website: https://cslanet.com
6
// </copyright>
7
// <summary>Defines a cloneable object.</summary>
8
//-----------------------------------------------------------------------
9
namespace
System
10
{
14
public
interface
ICloneable
15
{
19
object
Clone();
20
}
21
}
22
#else
23
[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ICloneable))]
24
#endif
Generated by
1.9.2