예제 #1
0
        public static View ReadView(CompactReader reader)
        {
            byte isNull = reader.ReadByte();

            if (isNull == 1)
            {
                return(null);
            }
            View newView = new View();

            newView.Deserialize(reader);
            return(newView);
        }
예제 #2
0
파일: View.cs 프로젝트: javithalion/NCache
		public static View ReadView(CompactReader reader)
		{
			byte isNull = reader.ReadByte();
			if (isNull == 1)
				return null;
			View newView = new View();
			newView.Deserialize(reader);
			return newView;
		}