예제 #1
0
        public NestedClass GetNestedData()
        {
            NestedClass ret = new NestedClass();

            ret.MTData = GetData(3);

            ret.MyData = GetData(1).Data;

            return(ret);
        }
예제 #2
0
        public NestedClass GetNestedData()
        {
            NestedClass ret = new NestedClass();

            ret.MTData = GetData(3);

            ret.MyData = GetData(1).Data;

            return ret;
        }
예제 #3
0
        public void SetNestedData(NestedClass data)
        {
            Debug.WriteLine(new string(UTF8Encoding.UTF8.GetChars(data.MyData)));

            Debug.WriteLine(new string(UTF8Encoding.UTF8.GetChars(data.MTData.Data)));
        }
예제 #4
0
        public void SetNestedData(NestedClass data)
        {
            Debug.WriteLine(new string(UTF8Encoding.UTF8.GetChars(data.MyData)));

            Debug.WriteLine(new string(UTF8Encoding.UTF8.GetChars(data.MTData.Data)));
        }