As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
We developed project in C# and we want to use js library or Json calls in project. is it possible? How can we use js library in C# project in Windows 8 metro apps?? is there any sample so please share link thanks.
No you cannot use C# and JavaScript for Win8 development together. Notice that the rendering engines for the two technologies are even different. If you want to utilize some JSON returning service in your XAML WinRT app you can still do that. All you need to do is deserialize the JSON after fetching it.
Related
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
I have some basic code made in C#. Is it possible to compile it for Android with little to no code changes?
You would need to use something like Xamarin (formerly MonoTouch).
Yes, you can develop application for android!
Xamarin For Android - Not a free product, full functional trial is available.
Dot42 - Not free for commercial use.
You can use them!
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
Currently debating on using Xamarin for a project, anybody got any ideas on android billing system? ideally on the subscription service. Is it all done through play store?
In-app billing requires sending requests from your app to IInAppBillingService. This requires using an AIDL file to invoke IPC method calls, but it is currently not supported by Mono for Android. However, it is still possible use AIDL in Mono for Android, but need some workarounds. Take a look at this answer.
Also, I heard there are some existing solutions to do in-app billing, check this or this.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I'd like to use the new metro transitions (AddDeleteThemeTransition, ContentThemeTransition, ...), for my WPF 4 project.
Can I use a dll ? Where could I download it ?
WinRT/XAML is a different technology than WPF and none of its WinRT UI will work with WPF. Additionally these transitions seem to be using some different mechanism than regular Storyboards, so there is likely no way to just extract them to something that would work with WPF.
Your only option would be to implement something yourself and make it look good. Or alternatively give up support for Windows 7 and implement your application as a WinRT app for Windows 8.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 10 years ago.
I am new to win 7 app dev. I have done app dev in android and have used org.json native libs.
Example : org.json.JSONArray , org.json.JSONException , org.json.JSONObject
I want similar functionalities in C# what i had in java with this json lib. Please tell me best lib to do that.
Currently i am using codetitans library. Code :
JSonWriter wr = new JSonWriter();
wr.WriteObjectBegin();
wr.WriteMember("set_cookie","0");
wr.WriteMember("test",writer.ToString());
wr.WriteObjectEnd();
string line = wr.ToString();
/* This creates a jsonwriter object and then write key, value pairs.*/
I would recommend trying JSON.NET :-
http://json.codeplex.com/
The following provides an example as to how you might serialise and deseralise using JSON.NET :-
http://james.newtonking.com/projects/json-net.aspx
You may also want to consider ServiceStack.Text as this has recently been shown to be the fastest JSON serialiser available.
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance.
Closed 9 years ago.
Is there a .NET version/binding for Neo4j?
It looks like exactly what I want, but I'm working in C# on .NET.
Thanks
I think you best bet at the moment is to use the REST server. There's a blog post with a proof of concept .NET client: Neo4j .NET Client over HTTP using REST and json.
Update: Now there's actually two different .Net Neo4j REST clients:
Neo4RestNet
Neo4jRestSharp
Just updating this question with a more current option - the Neo4jClient available on NuGet. The package and links to the project site are at http://nuget.org/packages/Neo4jClient