Alexandria.Engines.Unreal.Package.ReadNameValue C# (CSharp) Метод

ReadNameValue() публичный Метод

Read a Name reference from the BinaryReader, returning the Name's string value.
public ReadNameValue ( BinaryReader reader ) : string
reader System.IO.BinaryReader The to read from.
Результат string
        public string ReadNameValue(BinaryReader reader)
        {
            return ReadNameIndex(reader).Value;
        }

Usage Example

Пример #1
0
 /// <summary></summary>
 public static InitialAllianceInfo Read(BinaryReader reader, Package package)
 {
     return(new InitialAllianceInfo()
     {
         AllianceName = package.ReadNameValue(reader), Level = reader.ReadSingle(), Permanent = reader.ReadByte() != 0
     });
 }
All Usage Examples Of Alexandria.Engines.Unreal.Package::ReadNameValue