Nexus.Client.Games.Gamebryo.Tools.TESsnip.BaseRecord.ReadRecName C# (CSharp) Method

ReadRecName() protected static method

Reads the name of the given record.
protected static ReadRecName ( BinaryReader br ) : string
br System.IO.BinaryReader The record whose name is to be read.
return string
		protected static string ReadRecName(BinaryReader br)
		{
			br.Read(RecByte, 0, 4);
			return "" + ((char)RecByte[0]) + ((char)RecByte[1]) + ((char)RecByte[2]) + ((char)RecByte[3]);
		}