Пример #1
0
    public static int test_0_ldfld_stfld_soft_float_remote()
    {
        R4HolderRemote h = new R4HolderRemote();

        h.float_field = 3.14f;

        if (h.float_field == 3.14f)
        {
            return(0);
        }
        else
        {
            return(1);
        }
    }
Пример #2
0
	public static int test_0_ldfld_stfld_soft_float_remote () {
		R4HolderRemote h = new R4HolderRemote ();
		h.float_field = 3.14f;

		if (h.float_field == 3.14f)
			return 0;
		else
			return 1;
	}