diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-12-10 10:35:13 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-12-10 10:35:13 +0200 |
| commit | 8450ca1abeacaeb9305725cd38d9868f8004a5f2 (patch) | |
| tree | d7b71d1bfd14853b074976a2a88eb421aa188c31 /Software/Visual_Studio/Utilities/Tango.Stubs.CLI | |
| parent | 133fd74b460a6704a1b47720812d8b8ae4471f3f (diff) | |
| download | Tango-8450ca1abeacaeb9305725cd38d9868f8004a5f2.tar.gz Tango-8450ca1abeacaeb9305725cd38d9868f8004a5f2.zip | |
Modified MidTank Pressure 1-8 DoubleArray to MidTank Level 1-8 standard array.
Diffstat (limited to 'Software/Visual_Studio/Utilities/Tango.Stubs.CLI')
| -rw-r--r-- | Software/Visual_Studio/Utilities/Tango.Stubs.CLI/Program.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Software/Visual_Studio/Utilities/Tango.Stubs.CLI/Program.cs b/Software/Visual_Studio/Utilities/Tango.Stubs.CLI/Program.cs index 7564022d1..62e4498f7 100644 --- a/Software/Visual_Studio/Utilities/Tango.Stubs.CLI/Program.cs +++ b/Software/Visual_Studio/Utilities/Tango.Stubs.CLI/Program.cs @@ -118,7 +118,7 @@ namespace Tango.Stubs.CLI } Console.WriteLine("Response Received:"); - var type = typeof(MessageFactory).Assembly.GetType("Tango.PMR.Stubs." + responseContainer.Type.ToString()); + var type = typeof(MessageFactory).Assembly.GetType("Tango.PMR.Stubs." + responseContainer.Type.ToOriginalName()); MessageParser parser = type.GetProperty("Parser").GetValue(container) as MessageParser; IMessage message = parser.ParseFrom(responseContainer.Data); Console.WriteLine(JsonConvert.SerializeObject(message, Formatting.Indented)); |
