C# is a multiparadigm, managed, garbage-collected object-oriented programming language created by Microsoft in parallel with the .NET platform
3
votes
1answer
33 views
Best way to hide API key in source code
I need some ideas on how to protect a private API key in an application, specifically in a c# .NET application.
Firstly, I understand that it is theoretically impossible to hide anything in the ...
1
vote
0answers
57 views
WPF, PRISM, MVVM and Outlook style desktop application: But isn't WPF dead? (Confused) [on hold]
We are currently planning in developing a, fairly big, desktop application. It’s an application composed of other applications similar to outlook. We will be a team of developers working independently ...
1
vote
1answer
288 views
A class with only methods
What's the name for a class that has only methods? There are no fields/properties. Just two methods with the ability to parse some file in two ways. I have named the class Parser, but it just doesn't ...
-1
votes
0answers
21 views
Best Language/Library for Looper/Effects software [on hold]
i want to write a small Looper and/or Effects software. So now i'm at the point where i need to choose a Programming language which should have quite a good performance (as Looper mechanism tend to ...
-2
votes
0answers
26 views
design idea to create a website integrated with social media APIs [on hold]
I am yet to start the development of my new project. The idea is to access social media api's (say facebook api), fetch and write the consolidated information in my app DB and show them in webpage for ...
5
votes
2answers
117 views
What are the advantages of next-iterator over this-iterator?
I don't work too often with Java/C# iterators directly but when I do I always wonder what was the reason to design iterators in "next" fashion.
In order to start you have to move iterator, in order ...
-1
votes
0answers
9 views
How to use TAPI to record inbound/outbound Station Calls from PBX [migrated]
I have a Panasonic pbx configured with 10 extensions in One trunk.Now as per my requirement i have to develop an application which will record all the inbound as well as outbound calls originating ...
-1
votes
0answers
58 views
.Net solution for resource handling in database [on hold]
Im making a new solution for a webpage which is going to have a high number of future users. We are now looking at ways to maintain and load resources (images, localized strings, etc) in a good way. ...
1
vote
1answer
162 views
How to ensure method finishes running before being run again
I'm new and I am trying to figure something out. I have a simple program which executes a method either when an event happens or when my timer ticks. Lets just say the method takes 5 seconds to ...
2
votes
5answers
273 views
Should I use automatic properties?
I'm new to C# coming from a Java background. I'm working on a take home assignment for a coding interview. I normally write my code as following(Java):
public class Test {
//fields
private ...
-2
votes
0answers
43 views
efficient dynamic programming algorithm to compute this value. [on hold]
Q.4)Consider the problem of neatly printing a paragraph of text on a printer with fixed-width fonts. The input text is a sequence of n words containing L1,…,Ln, characters, respectively. Each line on ...
1
vote
0answers
216 views
C# Recursive Lambda [migrated]
So, let's pretend I have table such as:
+-----------------+-------------------+
| Parent Id | Child Id |
|-----------------|-------------------|
|1 |2 |
...
-2
votes
0answers
66 views
Wpf or Winforms [on hold]
We are goanna develop a desktop application for retail sector, kind of finance & payroll system.
In our app we are looking for,
App should be compatible with Windows XP
App deals with large ...
5
votes
4answers
406 views
How do I traverse a tree without using recursion?
I have a very large in memory node tree and need to traverse the tree. Passing the returned values of each child node to their parent node. This has to be done until all the nodes have their data ...
0
votes
1answer
94 views
Architecture Design Database and Web-Service Solution [on hold]
I have two layers in my application. The first one is database manager where I have classes that declare functions like inserting, selecting, deleting into database. The second one is a web-service ...