Search results for query: *

  1. J

    Define mathematical expressions at run-time

    Hi, i need to implement a feature in my program to enable users to defining mathematical expressions. Suppose we have this class public class test3 { public float x = 2; public float y = 3; public float z = 0; public float w = 0; public double...
  2. J

    Question common property and methods between classes

    Hi, I have some classes that share between their methods and properties: for example class A call method of class B and both class must have common field/property Common methods/property are several! I thought of this approach //------------------------------------------------------ // CLASS...
  3. J

    convert c to c#

    Hi, I have a lot of code written in C to convert to C#. Now the scenario is: - some modules written in C with public/private variables and public/private void or functions - each module interacts with another module for example module a get/set public variable of module b module b call...
  4. J

    Question Array and struct

    hi, i've this code public class a { sa sa1 = new sa(0); public void test () { uint i, j; for (i = 0; i <= 1; i += 1) { for (j = 0; j <= 13; j += 1) { sa1.va[i].vb[j] = false; } } } public...
Back
Top Bottom