예제 #1
0
파일: OtherData.cs 프로젝트: cwdotson/FwNs
 public OtherData(object o)
 {
     try
     {
         this._data = InOutUtil.Serialize(o);
     }
     catch (Exception exception)
     {
         throw Error.GetError(0xd91, exception.ToString());
     }
 }
예제 #2
0
파일: OtherData.cs 프로젝트: cwdotson/FwNs
        public object GetObject()
        {
            object obj2;

            try
            {
                obj2 = InOutUtil.Deserialize(this._data);
            }
            catch (Exception exception)
            {
                throw Error.GetError(0xd91, exception.ToString());
            }
            return(obj2);
        }