Commit b0ff6536 authored by Brickner_cp's avatar Brickner_cp

Example projects in Developer's Pack

parent 81761454
...@@ -21,7 +21,7 @@ namespace ObtainingTheDeviceList ...@@ -21,7 +21,7 @@ namespace ObtainingTheDeviceList
for (int i = 0; i != allDevices.Count; ++i) for (int i = 0; i != allDevices.Count; ++i)
{ {
LivePacketDevice device = allDevices[i]; LivePacketDevice device = allDevices[i];
Console.Write(i + ". " + device.Name); Console.Write((i + 1) + ". " + device.Name);
if (device.Description != null) if (device.Description != null)
Console.WriteLine(" (" + device.Description + ")"); Console.WriteLine(" (" + device.Description + ")");
else else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment