Alexandria.Engines.Unreal.Package.ReadNameValue C# (CSharp) Méthode

ReadNameValue() public méthode

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.
Résultat string
        public string ReadNameValue(BinaryReader reader)
        {
            return ReadNameIndex(reader).Value;
        }

Usage Example

Exemple #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