代码搜索:Serializable

找到约 10,000 项符合「Serializable」的源代码

代码结果 10,000
www.eeworm.com/read/193517/8220829

cs editablechild.cs

using System; using System.Data; namespace CSLA.Templates { [Serializable()] public class EditableChild : BusinessBase { // Declare variables here to contain object state //
www.eeworm.com/read/193517/8221147

vb children.vb

_ Public Class Children Inherits BusinessCollectionBase Default Public ReadOnly Property Item(ByVal index As Integer) As Child Get Return CType(list(index), Child
www.eeworm.com/read/193517/8221159

vb simpleroot.vb

_ Public Class SimpleRoot Inherits BusinessBase Private mData As String = "" Public Property Data() As String Get Return mData End Get Set(ByVal Va
www.eeworm.com/read/193517/8221180

vb child.vb

_ Public Class Child Inherits BusinessBase Private mData As String = "" Private mGuid As Guid = Guid.NewGuid Private mChildren As GrandChildren = GrandChildren.NewGra
www.eeworm.com/read/193517/8221194

vb grandchild.vb

_ Public Class Grandchild Inherits BusinessBase Private mData As String = "" Public Property Data() As String Get Return mData End Get Set(ByVal Va
www.eeworm.com/read/193517/8221196

vb genrootbase.vb

_ Public Class GenRootBase Inherits BusinessBase Private mData As String = "" Public Property Data() As String Get Return mData End Get Set(ByVal V
www.eeworm.com/read/193517/8221266

cs criteriabase.cs

using System; namespace CSLA { /// /// Base type from which Criteria classes can be /// derived in a business class. /// [Serializable()] public class Crite
www.eeworm.com/read/135673/13911197

java itemattribute.java

import java.io.*; //to serialize the record so it can be write into the file with the method WriteObject() //notice that the parent class should implement the Interface 'Serializable' //Use integers
www.eeworm.com/read/391338/8408209

cs zengticket.cs

using System; using System.Collections.Generic; using System.Text; using System.IO; namespace dianyingyuan { [Serializable] class ZengTicket : Ticket,Iprintshow { ///
www.eeworm.com/read/391338/8408248

cs seat.cs

using System; using System.Collections.Generic; using System.Text; using System.Drawing; namespace dianyingyuan { /// /// 座位信息 /// [Serializable]