예제 #1
0
    public static int test_0_ldfld_stfld_soft_float()
    {
        R4Holder h = new R4Holder();

        h.float_field = 3.14f;

        if (h.float_field == 3.14f)
        {
            return(0);
        }
        else
        {
            return(1);
        }
    }
예제 #2
0
파일: objects.cs 프로젝트: kumpera/mono
	public static int test_0_ldfld_stfld_soft_float () {
		R4Holder h = new R4Holder ();
		h.float_field = 3.14f;

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