<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Example code for .NET Core in Items with no label</title>
    <link>https://community.intel.com/t5/Items-with-no-label/Example-code-for-NET-Core/m-p/588996#M11198</link>
    <description>&lt;P&gt;Whilst there are no examples specifically for .NET Core, the RealSense SDK 2.0 does have .NET Framework compatibility in the 'csharp' category of wrapper.  The main page for this wrapper has a C#  example program, and links to several tutorial programs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/IntelRealSense/librealsense/tree/master/wrappers/csharp"&gt;https://github.com/IntelRealSense/librealsense/tree/master/wrappers/csharp&lt;/A&gt; librealsense/wrappers/csharp at master · IntelRealSense/librealsense · GitHub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I believe that this is the first question that has been asked on this forum about .NET Core, so I'll post Microsoft's definition here for the benefit of other readers.  .NET Core is "a cross-platform version of .NET for building websites, services, and console apps", whilst .NET Framework is "a Windows-only version of .NET for building any type of app that runs on Windows".&lt;/P&gt;</description>
    <pubDate>Mon, 08 Oct 2018 15:10:55 GMT</pubDate>
    <dc:creator>MartyG</dc:creator>
    <dc:date>2018-10-08T15:10:55Z</dc:date>
    <item>
      <title>Example code for .NET Core</title>
      <link>https://community.intel.com/t5/Items-with-no-label/Example-code-for-NET-Core/m-p/588995#M11197</link>
      <description>&lt;P&gt;I've been searching high and low for example code using .NET Core but haven't been able to find anything, is there anyone that have an example to share or could point me in the right direction?&lt;/P&gt;</description>
      <pubDate>Mon, 08 Oct 2018 14:57:05 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/Example-code-for-NET-Core/m-p/588995#M11197</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-10-08T14:57:05Z</dc:date>
    </item>
    <item>
      <title>Re: Example code for .NET Core</title>
      <link>https://community.intel.com/t5/Items-with-no-label/Example-code-for-NET-Core/m-p/588996#M11198</link>
      <description>&lt;P&gt;Whilst there are no examples specifically for .NET Core, the RealSense SDK 2.0 does have .NET Framework compatibility in the 'csharp' category of wrapper.  The main page for this wrapper has a C#  example program, and links to several tutorial programs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/IntelRealSense/librealsense/tree/master/wrappers/csharp"&gt;https://github.com/IntelRealSense/librealsense/tree/master/wrappers/csharp&lt;/A&gt; librealsense/wrappers/csharp at master · IntelRealSense/librealsense · GitHub&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I believe that this is the first question that has been asked on this forum about .NET Core, so I'll post Microsoft's definition here for the benefit of other readers.  .NET Core is "a cross-platform version of .NET for building websites, services, and console apps", whilst .NET Framework is "a Windows-only version of .NET for building any type of app that runs on Windows".&lt;/P&gt;</description>
      <pubDate>Mon, 08 Oct 2018 15:10:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/Example-code-for-NET-Core/m-p/588996#M11198</guid>
      <dc:creator>MartyG</dc:creator>
      <dc:date>2018-10-08T15:10:55Z</dc:date>
    </item>
    <item>
      <title>Re: Example code for .NET Core</title>
      <link>https://community.intel.com/t5/Items-with-no-label/Example-code-for-NET-Core/m-p/588997#M11199</link>
      <description>&lt;P&gt;I do have have semi working code for the .NET core but have run into issues trying to use a PointCloud. I'm getting a nasty missing DLL exception using the Points.CopyTo and was looking to find out if any one else had run into the same problem and perhaps how to solve it. The exception only occurs on my linuxplatform (Ubuntu 16.04), on windows it works as intended.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Exception Information&lt;/P&gt;&lt;P&gt;                 *********************************************&lt;/P&gt;&lt;P&gt;                 Exception Type: System.DllNotFoundException&lt;/P&gt;&lt;P&gt;                 Message: Unable to load shared library 'msvcrt.dll' or one of its dependencies. In order to help diagnose loading problems, consider setting the LD_DEBUG environment variable: libmsvcrt.dll: cannot open shared object file: No such file or directory&lt;/P&gt;&lt;P&gt;                 TypeName:&lt;/P&gt;&lt;P&gt;                 Data: System.Collections.ListDictionaryInternal&lt;/P&gt;&lt;P&gt;                 TargetSite: IntPtr memcpy(IntPtr, IntPtr, Int32)&lt;/P&gt;&lt;P&gt;                 HelpLink: NULL&lt;/P&gt;&lt;P&gt;                 Source: Intel.RealSense&lt;/P&gt;&lt;P&gt;                 HResult: -2146233052&lt;/P&gt;&lt;P&gt;                 StackTrace Information&lt;/P&gt;&lt;P&gt;                 *********************************************&lt;/P&gt;&lt;P&gt;                    at Intel.RealSense.NativeMethods.memcpy(IntPtr dest, IntPtr src, Int32 count)&lt;/P&gt;&lt;P&gt;                    at Intel.RealSense.Points.CopyTo(Vertex[] array)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;PointCloud pointCloud = new PointCloud();Points points = pointCloud.Calculate(frames.DepthFrame);Points.Vertex[] vertices = new Points.Vertex[points.Count];points.CopyTo(vertices);</description>
      <pubDate>Tue, 09 Oct 2018 12:28:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/Example-code-for-NET-Core/m-p/588997#M11199</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-10-09T12:28:17Z</dc:date>
    </item>
    <item>
      <title>Re: Example code for .NET Core</title>
      <link>https://community.intel.com/t5/Items-with-no-label/Example-code-for-NET-Core/m-p/588998#M11200</link>
      <description>&lt;P&gt;The best place to seek an answer to this question is likely to be on the RealSense GitHub site, where the RealSense engineers and developers reside.  You can post your question there by going to the link below and clicking the 'New Issue' button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/IntelRealSense/librealsense/issues"&gt;https://github.com/IntelRealSense/librealsense/issues&lt;/A&gt; Issues · IntelRealSense/librealsense · GitHub &lt;/P&gt;</description>
      <pubDate>Tue, 09 Oct 2018 12:58:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/Example-code-for-NET-Core/m-p/588998#M11200</guid>
      <dc:creator>MartyG</dc:creator>
      <dc:date>2018-10-09T12:58:36Z</dc:date>
    </item>
    <item>
      <title>Re: Example code for .NET Core</title>
      <link>https://community.intel.com/t5/Items-with-no-label/Example-code-for-NET-Core/m-p/588999#M11201</link>
      <description>&lt;P&gt;Thanks Marty, will do that.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Oct 2018 13:33:24 GMT</pubDate>
      <guid>https://community.intel.com/t5/Items-with-no-label/Example-code-for-NET-Core/m-p/588999#M11201</guid>
      <dc:creator>idata</dc:creator>
      <dc:date>2018-10-09T13:33:24Z</dc:date>
    </item>
  </channel>
</rss>

