How to add both F# and C# file together in .Net maui? [closed] - c#

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 10 hours ago.
Improve this question
I checked on internet but was unable to find how can I add both F# and C# file in .net maui with visual studio. I was making an application that require F# for calculation and C# (for various reasons like saving data to JSON, easier development, etc.)
I tried integrating C# with python but failed several times due to different errors. So ended up with F#. I was expecting to be able to use GUI, data saving to JSON and calculation together in my application.

Related

How to store variables in c# [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this question
I am programing a game and want to save a couple of variables that are bool type. All of the values are stored In class named "Variables". can it be done without using external files if possible?
If you're programming against the Windows Forms model you can look into saving such simple data in the Application settings. This will alleviate some learning curve on serialization.
Take a look here for some insight: Best practice to save application settings in a Windows Forms Application
If the save game data is going to get more complex you'll probably want to start searching for info on XmlSerializer, JSON serialization, or if you need your data concealed from prying eyes: BinarySerializer

How to call ArcGIS functionalities within a .net application? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I want to do somthing like this.Let's say I have a satellite image. I want to classify this into several vegetation indices. but I wantto do this programmatically. without involving any user or without opening ArcGIS. I know we can write script in python in arcgis to do some tasks. Like wise is there any way to call these ArcGIS functionalities within a normal .net application.
Please help me
The ArcGIS Runtime SDK for .NET (Windows Desktop) enables developers to create applications with high-quality interactive mapping, queries, geocoding, routing, data editing and advanced geographic analysis.
From here:
https://developers.arcgis.com/net/desktop/api-reference/

How to set time expiry to windows application in c#? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I am a novice software developer and I am building desktop applications using C#. I want to make my applications expire and generate a license file to activate the application after it expires. Meaning I want to include a time bomb to all my applications and detonate it by using the generated license file.
There are many ways to achieve this - the .NET-Way is described here in this MSDN-Article:
How to: License Components and Controls
If you are developing a windows 8 app and you want to find out a way to create a trial version of your app then I think the following article does a pretty good job of explaining how to do it.
http://msdn.microsoft.com/en-us/library/windows/apps/hh694065.aspx

How do I develop a DotNetNuke module from scratch? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I'm trying to develop a module for DotNetNuke 7 however 90% of the tutorials use templates which I really want to avoid. The other 10% are just simple hello world modules.
I was wondering if anyone could share a simple module project with database access and database queries that I could study or simply tell me what I need to do to go about doing this.
All of the modules on the DNN Forge are open source, if you want to peruse their source code. We also have some simple (and not simple) modules on our GitHub account (the simplest being Tell-A-Friend, Jackrabbit, and Take-Out)

How to create a browser plug-in using C#? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 3 years ago.
Improve this question
how to create a browser plug in using C#? (something like Flash Player or Unity3d)
This cannot be done using C# only.
WebKit is C++-based, so you'd need at least a C++ wrapper in order to let the browser communicate with your code. Using a mixed-mode C++ DLL that talks to WebKit on one side and to your C# code on the other side should be considered.
The WebKit site does not contain much docs (don't want to criticize, but I couldn't find much there when working with Chromium). Only Apple docs explain plug-ins, but it looks very Apple-oriented. Sorry, not very helpful.

Categories

Resources