Hi, thanks for your answer.
I've solved first two problems using this:
protected
*Now I have to solve this. How to do?*
Com.Amazon.Ags.Client.Whispersync.Model.NumberList.cs(80,80): Error CS0103:
The name `DeepCopy' does not exist in the current context (CS0103)
(GameCircle.MonoDroid)
The meth
On Nov 27, 2013, at 3:57 AM, Matteo Polito wrote:
> Com.Amazon.Ags.Client.Whispersync.Model.NumberList.cs(80,80): Error CS0103:
> The name `DeepCopy' does not exist in the current context (CS0103)
> (GameCircle.MonoDroid)
>
> The method is: // This method is explicitly implemented as a member o
Hi, thanks again for you answer.
You're right, it's abstract.
public abstract partial class NumberList : global::Java.Lang.Object, global
::Com.Amazon.Ags.Api.Whispersync.Model.ISyncableNumberList, global::Com.
Amazon.Ags.Client.Whispersync.Model.IMergeable
Now I don't know what to do! Have you a
I've created a new class "NumberList" in addition directory, It's partial.
using System;
namespace Com.Amazon.Ags.Client.Whispersync.Model
{
public partial class NumberList
{
public Java.Lang.Object DeepCopy(){
return this;
}
}
}
But is this right?
Thanks
I've created a new class "NumberList" in addition directory, It's partial.
using System;
namespace Com.Amazon.Ags.Client.Whispersync.Model
{
public partial class NumberList
{
public Java.Lang.Object DeepCopy(){
return this;
}
}
}
Now it compiles, but is thi
Ok, this should be right!!
using System;
namespace Com.Amazon.Ags.Client.Whispersync.Model
{
public partial class NumberList
{
public Java.Lang.Object DeepCopy(){
return DeepCopy ();
}
}
}
2013/11/27 Matteo Polito
> O, this should be right!!
>
> using
O, this should be right!!
using System;
namespace Com.Amazon.Ags.Client.Whispersync.Model
{
public partial class NumberList
{
public Java.Lang.Object DeepCopy(){
return DeepCopy ();
}
}
}
2013/11/27 Matteo Polito
> I've created a new class "NumberList"
On Nov 27, 2013, at 3:25 PM, Matteo Polito wrote:
> O, this should be right!!
Nope! It'll result in infinite recursion and stack overflow.
You want:
public abstract Java.Lang.Object DeepCopy();
You'll also need to double-check that the generated NumberList type has a
GetDeepCopyHandle
Hi,
I've seen that classes that implemts NumberList has GetDeppCopyHandler, so
it should work. Is it right?
I've binded other amazon jar:
- AmazonInsights-android-sdk-2.0.24.jar
- login-with-amazon-sdk.jar
- gamecirclesdk.jar
All projects are on GitHub: https://github.com/mapo80/GameCircle.Mono