gopakumar-gg

Results 8 issues of gopakumar-gg

Sometimes, it is desirable to invoke an application from the Application Toolbar as Administrator. For example, you want to modify a configuration file residing in your software installation folder inside...

The Command Prompt toolbar button is extended as DropDown button to run as Administrator. If the user simply clicks the actual button, it will run as usual (non-admin).

https://www.beeflang.org/docs/doxygen/corlib/html/struct_system_1_1_enum_1_1_enum_enumerator-members.html In the documentation page of System.Enum.EnumEnumerator< TEnum > Member List, links to System.Enum.EnumFieldsEnumerator< TEnum > are broken. It shows Page not found. ![image](https://user-images.githubusercontent.com/36254079/173806121-137ee1a3-41b7-4835-a13d-a8157260add6.png)

In Beef documentation of Memory Management page, the links to System.String and System.Collections.List are given wrong paths: https://www.beeflang.org/docs/language-guide/doxygen/corlib/html/class_system_1_1_string.html https://www.beeflang.org/docs/language-guide/doxygen/corlib/html/class_system_1_1_collections_1_1_list.html They are actually available at the below urls. https://www.beeflang.org/docs/doxygen/corlib/html/class_system_1_1_string.html https://www.beeflang.org/docs/doxygen/corlib/html/class_system_1_1_collections_1_1_list.html ![image](https://user-images.githubusercontent.com/36254079/173801135-9612b034-32c1-4d5b-8bbf-eb3a7ac84842.png)

```cs using System; namespace BeefTest; class Program { public static void Main() { } // Put an '=' in the below line so as to define Int=int, the IDE hangs...

IDE encounters a fatal error and terminates while building the below code (taken from Beef Documentation page 'Pattern Matching'. ```cs using System; namespace BeefTest; class Program { public static void...

Watch window is not able to see ptr. ```cs using System; namespace BeefTest; struct Inner { using struct { public int x = ?; }wrapper; int* ptr = &x; public...

In the following code, debugging with 'Step Into' from Outer constructor finally reaches line 2 (namespace BeefTest;) instead of line 8 (int* ptr = &x;). Anyway, functionality is working fine....