Newb question here: I'm trying to run this sample c# code from https://developer.leapmotion.com/documentation/Languages/CSharpandUnity/Guides/Sample_CSharp_Tutorial.html for the Leap Motion.
Running the sample
To run the sample application:
Compile the sample application: On Windows, make sure that Sample.cs and either LeapCSharp.NET3.5.dll or LeapCSharp.NET4.0.dll are in the current directory. Run the following command in a command-line prompt (using the proper library reference for the .NET framework you are using): csc /reference:LeapCSharp.NET4.0.dll /platform:x86 /target:exe Sample.cs Note: use the
csc
compiler from the appropriate version of the .NET framework.
How do I figure out what .NET framework I have?
How do I make sure that Sample.cs and either LeapCSharp.NET3.5.dll or LeapCSharp.NET4.0.dll are in the current directory? This simply mean to put this folders in my CD right? Then execute:
csc /reference:LeapCSharp.NET4.0.dll /platform:x86 /target:exe
Sample.cs
Can someone translate what each segment in that line actually means?