You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 22, 2021. It is now read-only.
I´m new to VisualStudio and C# and I´m getting an error message, which I hope you can help me with.
The error message:
System.NotImplementedException
HResult=0x80004001
Nachricht = Die Methode oder der Vorgang ist nicht implementiert.
Quelle = DemoInfo
Stapelüberwachung:
bei DemoInfo.DP.Handler.PacketEntitesHandler.PropertyCollector..ctor(Entity underlying, IList`1 capture)
bei DemoInfo.DP.Handler.PacketEntitesHandler.ReadEnterPVS(IBitStream reader, Int32 id, DemoParser parser)
bei DemoInfo.DP.Handler.PacketEntitesHandler.Apply(PacketEntities packetEntities, IBitStream reader, DemoParser parser)
bei DemoInfo.PacketEntities.Parse(IBitStream bitstream, DemoParser parser)
bei DemoInfo.DP.DemoPacketParser.ParsePacket(IBitStream bitstream, DemoParser demo)
bei DemoInfo.DemoParser.ParseDemoPacket()
bei DemoInfo.DemoParser.ParseTick()
bei DemoInfo.DemoParser.ParseNextTick()
bei DemoInfo.DemoParser.ParseToEnd()
bei TEst.Program.Main(String[] args) in C:\Users\Pati\source\repos\TEst\Program.cs: Zeile21
I´ve installed DemoInfo with the following instructions: #107 (comment)
code:
namespace TEst
{
class Program
{
static void Main(string[] args)
{
string dev_file = @"C:\Users\Pati\Downloads\liquid-vs-teamone-m2-inferno.dem";
using (var fs = File.OpenRead(dev_file))
{
using (DemoParser parser = new DemoParser(fs))
{
parser.ParseHeader();
parser.ParseToEnd();
}
}
}
}
}
parser.ParseHeader(); is working fine, I can use parser.Map for example
parser.ParseToEnd(); is not implemented?