Personal.AddressBook.DeserializeLength C# (CSharp) 메소드

DeserializeLength() 공개 정적인 메소드

Helper: create a new instance to deserializing into
public static DeserializeLength ( System.Stream stream, int length ) : AddressBook
stream System.Stream
length int
리턴 AddressBook
        public static AddressBook DeserializeLength(Stream stream, int length)
        {
            var instance = new AddressBook();
            DeserializeLength(stream, length, instance);
            return instance;
        }

Same methods

AddressBook::DeserializeLength ( System.Stream stream, int length, Personal instance ) : Personal.AddressBook