use math.h in C#
-
Hi friends, I have some code in C which I need to convert in C#. The very first line of C code is an Include file. So how can I convert this line in C# code or what is the equivalent of this in C#? I have already tried system.math class but I want to convert this particular in C#. #include max dev
-
Hi friends, I have some code in C which I need to convert in C#. The very first line of C code is an Include file. So how can I convert this line in C# code or what is the equivalent of this in C#? I have already tried system.math class but I want to convert this particular in C#. #include max dev
u can't use .h file i think u have to convert it into class library then u can use it
-
Hi friends, I have some code in C which I need to convert in C#. The very first line of C code is an Include file. So how can I convert this line in C# code or what is the equivalent of this in C#? I have already tried system.math class but I want to convert this particular in C#. #include max dev
You'll have to use the corresponding methods of System.Math and do some manual labor to adapt your C code.
-
u can't use .h file i think u have to convert it into class library then u can use it
Thanks so much for your reply. Can you tell me how can I convert it in system library ? or can you suggest any source or converter where I can convert my C Code into C# ? max dev