mg
mg
CC#
Created by yourFriend on 3/28/2025 in #help
In String constructor `String(Char*)`, `Char*` is character pointer or character array pointer?
perfectly fine to play around and explore but unsafe is for when you're experienced enough to know how to break the rules the right way in the name of performance
18 replies
CC#
Created by yourFriend on 3/28/2025 in #help
In String constructor `String(Char*)`, `Char*` is character pointer or character array pointer?
also, like, never do this
18 replies
CC#
Created by yourFriend on 3/28/2025 in #help
In String constructor `String(Char*)`, `Char*` is character pointer or character array pointer?
anything you can do with an array can be done with a pointer, so a char* is a char[], in a way. in other ways it's not
18 replies
CC#
Created by yourFriend on 3/28/2025 in #help
In String constructor `String(Char*)`, `Char*` is character pointer or character array pointer?
the "Pointers and Arrays" section of The C Programming Language would be a good read if you can get a copy of it
18 replies
CC#
Created by yourFriend on 3/28/2025 in #help
In String constructor `String(Char*)`, `Char*` is character pointer or character array pointer?
it's a pointer to an array in a C kind of sense
18 replies
CC#
Created by Thithi on 3/17/2025 in #help
Should I implement Application Insights in a simple Asp.Net Core Application to make good impressio?
if you do it then you'll be able to include application insights on the list of things you've worked with
4 replies
CC#
Created by Thithi on 3/17/2025 in #help
Should I implement Application Insights in a simple Asp.Net Core Application to make good impressio?
it's always good to learn new things
4 replies
CC#
Created by Ho3in on 3/8/2025 in #help
stack
would explain the use of "simulate" too
46 replies
CC#
Created by Ho3in on 3/8/2025 in #help
stack
No description
46 replies
CC#
Created by Ho3in on 3/8/2025 in #help
stack
i think the language barrier is too big for me to be able to help, as i'm not understanding what you mean. sorry
46 replies
CC#
Created by Ho3in on 3/8/2025 in #help
stack
if they're using anything from System.Collections.Generic they might as well be using Stack<T>, but i guess i'm making assumptions about what their instructor has made available
46 replies
CC#
Created by Ho3in on 3/8/2025 in #help
stack
you're not simulating a stack, you're implementing an actual stack
46 replies
CC#
Created by Ho3in on 3/8/2025 in #help
stack
they need a stack
46 replies
CC#
Created by Ho3in on 3/8/2025 in #help
stack
i don't speak french
46 replies
CC#
Created by Ho3in on 3/8/2025 in #help
stack
i don't understand what you mean by this
46 replies
CC#
Created by Ho3in on 3/8/2025 in #help
stack
then create an instance of that stack class, read each number and push it on the stack, and then pop them all off like you're doing
46 replies
CC#
Created by Ho3in on 3/8/2025 in #help
stack
the right way, without using the existing Stack<T> class, would be to write a Stack class yourself to encapsulate the logic of creating the stack and pushing/popping
46 replies
CC#
Created by Ho3in on 3/8/2025 in #help
stack
typically you don't create instances of Program
46 replies
CC#
Created by Ho3in on 3/8/2025 in #help
stack
I want to keep this short and simple, without classes or objects
not possible. C# is an object oriented language. Program is a class
46 replies
CC#
Created by Ho3in on 3/8/2025 in #help
stack
but that's probably not what your instructor would want you to do
46 replies