0
내 .net 응용 프로그램에서 protobuf-net 2.3.2를 사용하여 버퍼 파일을 생성하고 있습니다.C에서 두 protobuffer 파일을 비교하는 방법 #
public class EmailData
{
public string FirstName{ set; get; }
public string LastName { set; get; }
public Location Location { set; get; }
}
public class Location
{
public string LocaitionName{ set; get; }
public string ZipCode{ set; get; }
}
나는 당신이 할 수없는 EmailData 클래스
객체로 다시 직렬화하지 않으면 가능하지 않다고 생각합니다 ... – Nyerguds