public Resultado Procesar_Respuesta_Estructurada(ref object ObjetoIN, ref string Login, string NombreMetodo)
{
int i = 0;
Resultado ObjetoOUT = default(Resultado);
bool Errors_Warning = false;
Utilitarios OUtil = default(Utilitarios);
try
{
OUtil = new Utilitarios();
ObjetoOUT = new Resultado();
ObjetoOUT.Success = ObjetoIN.Success;
ObjetoOUT.ExistWarnings = ObjetoIN.ExistWarnings;
ObjetoOUT.Items = ObjetoIN.Items;
if ((ObjetoIN.Errors != null) && ObjetoIN.Errors.Length > 0)
{
Errors_Warning = true;
エラーは ObjetoIN.Success にあります
エラー 3 'object' には 'Success' の定義が含まれておらず、タイプ 'object' の最初の引数を受け入れる拡張メソッド 'Success' が見つかりませんでした (using ディレクティブまたはアセンブリ参照がありませんか?)