C# 클래스 SwfDotNet.IO.Utils.BinaryStringRW

A helper class for reading/writing zero-byte terminated strings
파일 보기 프로젝트 열기: bladecoding/SwfExport

공개 메소드들

메소드 설명
ReadString ( BinaryReader br ) : string

Read zero-byte terminated string with a BinaryReader

WriteString ( BinaryWriter w, string str ) : void

Write zero-byte terminated string with a BinaryWriter

비공개 메소드들

메소드 설명
BinaryStringRW ( ) : System Hidden constructor, class is only used in static context.

메소드 상세

ReadString() 공개 정적인 메소드

Read zero-byte terminated string with a BinaryReader
public static ReadString ( BinaryReader br ) : string
br System.IO.BinaryReader
리턴 string

WriteString() 공개 정적인 메소드

Write zero-byte terminated string with a BinaryWriter
public static WriteString ( BinaryWriter w, string str ) : void
w System.IO.BinaryWriter
str string
리턴 void