From 56e7172c40f0af0858a80f0e0242f9564da9e2d1 Mon Sep 17 00:00:00 2001 From: Wafa Sadri Date: Thu, 10 Apr 2014 12:28:47 +0200 Subject: [PATCH] =?UTF-8?q?dritter=20Versuch=20f=C3=BCr's=20commit=20von?= =?UTF-8?q?=20ProcessYourId?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Parser.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Parser.cs b/src/Parser.cs index 5f520fd..228f633 100644 --- a/src/Parser.cs +++ b/src/Parser.cs @@ -222,7 +222,10 @@ namespace WorldOfPeacecraft private void ProcessYourid (Block yourIdBlock) { - int value = (int)yourIdBlock.GetUnnamedValues (); + LinkedList unnamedValues = yourIdBlock.GetUnnamedValues (); + string stringValue = unnamedValues.First.Value; + int intValue = int.Parse (stringValue); + //YourID id = new YourID (intValue); } private void ProcessTime (Block block)