Posts by who who who who • 653 points
10 posts
-
5
votes1
answer798
viewsA: Console Application C# in Visual Studio
You made sure to have the package installed .NETwhen installing Visual Studio? Even if you work with C#, if you are going to use the application console you will need the package .NET installed. You…
c#answered who who who who 653 -
0
votes1
answer798
viewsQ: Console Application C# in Visual Studio
I downloaded the VS 2017 and I’m having problems, I can’t work with the Application Console. I start the program and do the following: Filing cabinet New Project Application in C# There are several…
c#asked who who who who 653 -
0
votes4
answers130
viewsQ: How to apply a rule to a specific element?
I need to leave an image Blur, I’m applying the CSS this way: <style> img { -webkit-filter:blur(5px); filter: blur(5px); } </style> But when I add this property it passes to all images…
cssasked who who who who 653 -
3
votes1
answer900
viewsA: Timer in C#
Your while is correct, but to give this counting effect you missed using the System.Threading method; which is a timer for millisecond execution. make that change in while: int n = 0; while (n <…
c#answered who who who who 653 -
0
votes1
answer900
viewsQ: Timer in C#
I am programming the screen of a game where will show the player’s score in progressive mode, it shows the score at the end of the match but does not show with the effect of time between numbers. my…
c#asked who who who who 653 -
15
votes3
answers4235
viewsA: Difference between Console.Write() and Console.Writeline()?
Console.Write() writes continuously on the same line and Console.WriteLine() makes the line breaks in the code.
c#answered who who who who 653 -
4
votes3
answers4235
viewsQ: Difference between Console.Write() and Console.Writeline()?
What’s the difference between Console.Write() and Console.WriteLine()?
c#asked who who who who 653 -
14
votes3
answers3678
viewsQ: Can I upload folders along with the code on Github?
I already put code in my Github repositories once, but now I’m dealing with Netbeans site using HTML5, and I have other folders like CSS, Javascript, and the like. You have the possibility, when you…
githubasked who who who who 653 -
1
votes0
answers670
viewsQ: Finding Error in My Css by NETBEANS
My code is presenting the following problem in css (IMAGE ERROR MESSAGE) error code does not interfere and I can run my site normally even with css error. @supports ((-webkit-transform:…
-
4
votes1
answer520
viewsA: Is it allowed to use free sprites from the Unity Asset store in monetized games?
Good afternoon Vinicius, there are many free Assets for monetization. Those marked CC0 (public Domain) mean that you use the Assets for commercial purposes. I work with games here in brazil and…