1
How can I display a window without using frameworks?
For example, display the console window or another without the . NET and others frameworks.
1
How can I display a window without using frameworks?
For example, display the console window or another without the . NET and others frameworks.
3
Without frameworks using C# so far is still impossible, even on .NET Native. Generally not even without the . NET or other implementation of CLR can’t (which is already a framework). If none of this solves then give up C# until it has a version without one framework (which I doubt is possible, okay, maybe it’s just with a lot of library in place of frameworks, but I still have doubts, and it’s not gonna happen).
All access to console functions is already done with . NET and I don’t know if we can call this part framework, then strictly speaking, without a framework specific is already doing in this part, even if you need a framework for the whole. If you do not want to use these functions you can access the Windows API (or other operating system) directly, but I see zero advantages in that.
If what you want is not console have the entire Windows API. I see only advantage in using what is not yet available on . NET.
I don’t know if I wouldn’t call the Windows API framework also, she has a philosophy very close to one of framework.
Browser other questions tagged c# .net framework
You are not signed in. Login or sign up in order to post.
I think it’s with https://msdn.microsoft.com/library/windows/desktop/ms632679, but I think it’s going to be a lot more work than using the
Form
– Guilherme Nascimento
You can exchange "view window without frameworks" for "run program without computer", for example.
– Oralista de Sistemas