C
C#15mo ago
FSHF

whats the symbol for power of?

symbol or what i gotta do to get it
9 Replies
ero
ero15mo ago
double.Pow
FSHF
FSHF15mo ago
if i did an ekvation, 2+3^2, where would i place the code
Thinker
Thinker15mo ago
2 + Math.Pow(3, 2) ^ in C# is not exponentiation, it's bitwise not
ero
ero15mo ago
though do use double.Pow or float.Pow
FSHF
FSHF15mo ago
so there isnt an equivalent to ^ in c#?
ero
ero15mo ago
no
JakenVeina
JakenVeina15mo ago
nope that's true for the vast majority of programming language
Thinker
Thinker15mo ago
Well it's not an operator, but again Math.Pow is the equivalent.
FSHF
FSHF15mo ago
when i put in number in my calculator i made it gets added to the right, put im not sure how to imploment it in
private void btncl(object sender, EventArgs e)
{


ccal += (sender as System.Windows.Forms.Button).Text;


txtbout.Text = ccal;

}
private void btncl(object sender, EventArgs e)
{


ccal += (sender as System.Windows.Forms.Button).Text;


txtbout.Text = ccal;

}
this is how i put the numbers and +- */
Want results from more Discord servers?
Add your server
More Posts
❔ Why could NuGet restore randomly timeout inside GitHub Actions?So frequently `nuget restore` timeout inside GitHub Actions for months and I can't figure out what c❔ How would I implement a toroidal universe?A while ago I had started a project to hopefully create John Conway's Game of Life. I have everythin❔ How would I have a compiled Class Library look for necessary reference in a folder other than ./I am creating a game mod via Melon Loader, and I want to have the compiled .dll look for its referen❔ asp.net MVC, can I store some data in a static variable to access in a future request??I might need to modify a current process where user uploads a shit ton of data via excel. the server❔ journal system?https://www.youtube.com/watch?v=OWvicJkXv94 is there an easier way of implementing a journal system ❔ Bug in blazor?Hello guys, i have encountered something strange in my blazor app. I'll try to explain it here. So i❔ Unescaping special charactersWorking on a little SaaS thumbnail preview tool I'm gonna sell, and special characters like apostrop❔ How could I make it so that every tabpage on a tabcontrol fades in when you open them?How could I make it so that every tabpage on a tabcontrol fades in when you open them?❔ How to take a native crash [{0x7f803bba7228} + 0x3bd] + PDB/DLL and get a line number?I have a native crash from a .net application on macOS that contains some managed code in the stack.❔ .NET MAUI Blazor Windows Application does not startHi I wanted to deploy my application, I followed this tutorial: https://learn.microsoft.com/de-de/do