Tag: c# tutorial

Learn C# – How To Get Int Value from Enum?

Getting an int value from enum can be challenging in C#. However, it can easily be done by using the following code: [crayon-63b391af44535212044806/] The above code stores int value of Months enum into abc. We… The post Learn C# – How To Get Int Value from Enum? appeared first on Education Ecosystem Blog. ...
Continue Reading Learn C# – How To Get Int Value from Enum?

Learn C# – How To Get the URL of The Current Page

If you are using C# for creating apps, you may want to use it to fetch the URL of the current page. This requirement is extremely common in web apps, or apps that take advantage… The post Learn C# – How To Get the URL of The Current Page appeared first on Education Ecosystem Blog. ...
Continue Reading Learn C# – How To Get the URL of The Current Page

Learn C# – How To Add Values to a C# Array

The Array is used to store information in a structured manner. It is a data structure that helps store and retrieve data. If you are looking to add values to a C# array, you have… The post Learn C# – How To Add Values to a C# Array appeared first on Education Ecosystem Blog. ...
Continue Reading Learn C# – How To Add Values to a C# Array

Learn C# – How to create Excel (.XLS and .XLSX) file from C#?

Creating an Excel file in C# is not as hard as many beginners believe. With no internal library support for creating Excel sheets, you are left with 3rd party libraries. Thankfully, there are plenty of… The post Learn C# – How to create Excel (.XLS and .XLSX) file from C#? appeared first on Education Ecosystem Blog. ...
Continue Reading Learn C# – How to create Excel (.XLS and .XLSX) file from C#?

Learn C# – How To Generate a Random Int Number

If you want to know how to generate a Random Int number using C#, then you have come to the right place.C# is one of the main .NET languages and is used to build Windows… The post Learn C# – How To Generate a Random Int Number appeared first on Education Ecosystem Blog. ...
Continue Reading Learn C# – How To Generate a Random Int Number

Learn C# – How To Get a Consistent Byte Representation of Strings?

Encoding can be a frustrating experience for a coder who is just looking for byte representation of strings. If you are using C#, and thinking of how to get a consistent byte representation from the string… The post Learn C# – How To Get a Consistent Byte Representation of Strings? appeared first on Education Ecosystem Blog. ...
Continue Reading Learn C# – How To Get a Consistent Byte Representation of Strings?