|
The Microsoft app store might be a good idea.
I guess that your app might be a stand-alone executable, if so then be careful how you write your XML that you include in the executable. It is not complicated. Microsoft has some guidelines that help you get on their list.
Do it. Make some money. Do not be afraid of competition. Do not worry about competition so much that you do not have a product out there.
Thank you for asking.
|
|
|
|
|
Hi
I program business logik in ERP systems in Visual Studio with vb.net and C#.
Now I would like to try and learn to make app's so maybe one day and I can make app's that show business data.
But beeing new to this I find it difficult to get started. There is a lot of new words I don't know the meaning of and it is difficult to find out how to best start making app's.
I started looking at Xamarin beeing used to VS and all, but I just found out that this seems to be obsolete?
I would like to only write code once and use it on both android and ios - but is this realistic?
So...
Any recommendations where to start?
A good place be be guided through which buzz words I need to know about and the technology they represent?
Should I use Xamarin, or Flutter or...???
Hands on example that makes it easy to learn by doing?
Any recommendations will be appreciated
Another old dog that wants to learn new tricks
|
|
|
|
|
|
|
Growing in Mobile Development Popularity
Hybrid applications are going to become more and more critical in the future.
It does not make sense to learn Java or hire Java developer for developing Android apps and to learn Objective-C / Swift to develop IOS applications and learn C# or hire a C# developer to develop Windows 10 phone applications.
|
|
|
|
|
Use Maui in Visual Studio (the Xamarin successor)
|
|
|
|
|
|
What are you trying to accomplish with this message?
|
|
|
|
|
It's a closed spam account.
More to the point, what are you trying to accomplish with your message?
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
|
Possibly. As Greg said, he's had a lot of other non-trolling posts. Maybe it just needs Sean to have a word about some of his latest posts?
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
i want send bulk of messages using SMPP protocol with c#
|
|
|
|
|
I want to win the lottery.
|
|
|
|
|
Well go ahead - you have our permission to try.
Feel free to come back when you have an actual question.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
|
I know I'm going way, way back here, but maybe someone here has done this a long time ago.... I have a multiplatform project I support - the older platforms use EVC++ 4.0 to build the application, the newer platform uses VS2008 Professional.
In VS2008, I can create a folder, add many subprojects into it, and compile all of them by simply right mouse clicking on the folder and select Build. In effect, the folder is a dummy target, and VS2008 just knows how to build the proper dependency tree.
I'd like to do the same in EVC++, but it has no folder option at the project / workspace level. I can create a simple project and establish dependencies to the subprojects, but EVC++ insists on having an output target of some type.
Anyone know how to fake out EVC++? I know I'm grasping here If I were back in Unix land, I'd just edit my make file and create the dummy target manually. Hmmm, possibilities here.
Charlie Gilley
“They who can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety.” BF, 1759
Has never been more appropriate.
|
|
|
|
|
I am looking for a solution to this problem please
Write a calculation function allowing to perform an operation on two numbers according to a given operator.
In addition to the two numbers it will be necessary to pass a 3rd parameter defining the type of operation to be done: + (addition), - (subtraction), * (multiplication), / (division)
|
|
|
|
|
No you are looking for someone to do your schoolwork for you. Try to do it first and ask specific question if you get stuck.
Never underestimate the power of human stupidity -
RAH
I'm old. I know stuff - JSOP
|
|
|
|
|
ok really thank you for answering me. I am a real beginner in programming. the concern the will is there but not easy. So that's what I did.
import 'dart:io';
import 'dart:math';
main() {
print(somme(1, 2));
print(multiplication(1, 2));
print(division(1, 2));
print(soustraction(1, 2));
}
int somme(int a, int b) {
int result = a + b;
return result;
}
int multiplication(int a, int b) {
int result = a * b;
return result;
}
int division(int a, int b) {
int result = a ~/ b;
return result;
}
int soustraction(int a, int b) {
int result = a - b;
return result;
}
|
|
|
|
|
OK, so now what is the question?
|
|
|
|
|
really thank you for answering me the question is: Write a function calculates allowing to perform an operation on two numbers according to a given operator.
|
|
|
|
|
No, that's not a question. That's your homework assignment.
Nobody here is going to do your homework for you.
"These people looked deep within my soul and assigned me a number based on the order in which I joined."
- Homer
|
|
|
|
|
Well you have still not explained what is wrong with the code you have already written.
|
|
|
|
|
From my vantage point, this does not satisfy the "according to a given operator" requirement. I think your instructor is looking for a routine that could handle inputs like:
print(foo(1, 2, "+"));
print(foo(6, 3, "/"));
"One man's wage rise is another man's price increase." - Harold Wilson
"Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons
"You can easily judge the character of a man by how he treats those who can do nothing for him." - James D. Miles
|
|
|
|
|
Really thank you for answering me. but my instructor had already given me this indication. but like I told you I really can't. if you can give me more details that would do me a lot of good. Thank you for answering me.
|
|
|
|