AES/CBC/PKCS5Padding Encryption/Decryption in C#
2023-02-14 C#
AES/CBC/PKCS5Padding Encryption/Decryption in C#
Read More...AES/CBC/PKCS5Padding Encryption/Decryption in C#
AES/CBC/PKCS5Padding Encryption/Decryption in C#
Read More...How to check if DateTime is Null or Not Null or Empty in C#
how to check if a DateTime is Null or Not Null or Empty in C#?
Read More...Handle null values in JsonConvert.DeserializeObject c#
How to handle null/empty values in JsonConvert.DeserializeObject in c#
Read More...How to create a dictionary with data table in c#
How to create a dictionary with data table column name key and value as row values in c#
Read More...How to convert an integer number to datetime in c#
How to convert an integer number to datetime in c#
Read More...What is call stack and stack trace in C#
What is call stack and stack trace in C#- a call stack is a stack data structure which stores detail information about the active subroutines of a program. This kind of stack is also known as an execution stack, program stack, control stack, run-time stack, or machine stack, and is often referred as just "the stack".
Read More...Currency format in SQL Server- you will learn how to use currency format in sql server?. When working with currency formats, there are many different formats used around the world. For example, in the USA we use the $ for the currency symbol and a decimal point as a separator. Whereas in Latin America, we use the decimal point instead of a comma as the separator.
Read More...C# - Exception Handling - C# exceptions handling are represented by classes. The exception classes in C# are directly or indirectly derived from the System.Exception class.
Read More...How To Base64 Encoding and Decoding in C#
How do I encode and decode a base64 string in c#?
Read More...Converting DataTable To Model List in c#
Converting DataTable To Model List in c#
Read More...C# StreamReader class is used to read string from the stream. It inherits TextReader class. It provides Read(), ReadLine(), ReadBlock() and ReadToEnd()
Read More...How do I generate a random int number in c#?
How do I generate a random int number in c#?
Read More...Is Mathf Approximately equal true its correct behavior?
Is Mathf.Approximately(0.0f, float.Epsilon) == true its correct behavior?
Read More...Type Casting In C#- 1. Implicit Casting (automatically) - converting a smaller type to a larger type size. 2. Explicit Casting (manually) - converting a larger type to a smaller size type.
Read More...Math class in c#- In this article, how to use c# math class. The C# Math class has many methods that allow you to perform mathematical operations.
Read More...In this article, you will learn how to create an array in c#, to declare an array, Arrays are used to store multiple values in a single variable, instead of declaring separate variables for each value. Define the variable type with square brackets.
Read More...Remove the element with the specified key from a list in C#
How Remove the element with the specified key from a SortedList In C#?
Read More...C# Program to perform Currency Conversion
C# Program to perform Currency Conversion
Read More...How to create a dataset in c# through programmatically?
How to create a dataset in c# through programmatically?
Read More...Start Date End Date Validation in Asp.net c#
Start Date End Date Validation In Asp.net: Start date should be less than End date
Read More...what is public void in c# - The void keyword is used in method signatures to declare a method that does not return a value. A method declared with the void return type cannot provide any arguments to any return statements they contain.
Read More...What is CLR in .NET | .NET Common Language Runtime (CLR)
What is CLR in .NET
Read More...How to remove elements from a list in C#
How to remove elements from a list in C# - List.Remove() The Remove() method takes an item as a parameter and removes the first occurrence of that item from the list
Read More...Full Form of BIOS - Basic Input Output System
Full Form of BIOS - Basic Input Output System.
Read More...Full Form of ASP - Active Server Page
Full Form of ASP - Active Server Page.
Read More...Full Form of APK - Android Application Package
Full Form of APK - Android Application Package.
Read More...Full Form of API - Application Programming Interface.
Full Form of API - Application Programming Interface.
Read More...Full Form of AJAX - Asynchronous JavaScript and XML
Full Form of AJAX - Asynchronous JavaScript and XML
Read More...HTTP Error 403.14 - Forbidden when you open an IIS webpage
HTTP Error 403.14 - Forbidden when you open an IIS webpage
Read More...Full Form of IPV6 - Internet protocol version 6
Full Form of IPV6 - Internet protocol version 6.
Read More...Full Form of IPV4 - Internet protocol version 4
Full Form of IPV4 - Internet protocol version 4.
Read More...Full Form of IBM - International Business Machines
Full Form of IBM - International Business Machines.
Read More...C# string.IsNullOrEmpty, IsNullOrWhiteSpace
C# string.IsNullOrEmpty, IsNullOrWhiteSpace
Read More...Full Form of FTP - File Transfer Protocol
Full Form of FTP - File Transfer Protocol.
Read More...Database connection in c#:- Database operations using system.data.SqlClient namespace in C#.
Read More...Full Form of CSS - Cascading Style Sheet
Full Form of CSS - Cascading Style Sheet.
Read More...Full Form of HTML - Hyper Text Markup Language
Full Form of HTML - Hyper Text Markup Language.
Read More...How to execute SQL script file using c#
How to execute SQL script file using c#
Read More...Export data from dataset to excel in c#
Export data from dataset to excel in c#
Read More...float vs double in c#- Difference between decimal, float and double in .NET?
Read More...C# ??? ????? ???? ???? ?? | C# Mein List Kya Hota Hai
C# में लिस्ट क्या होता है, C# Mein List Kya Hota Hai, List In C#, List<T>, list C# का एक मह्त्वपूर्ण डाटा टाइप है | इसमें बहुत सारी Values को रखा जाता है | प्रत्येक वैल्यू को comma (,) से seperate किया जाता है, तथा सारी Values को एक bracket {} के अंदर रखा जाता है | लिस्ट की indexing भी 0 से start होती है | System.Collection.Generic namespace में पाया जाता है |
Read More...How to calculate percentage in asp.net c#?
How to calculate percentage in asp.net c#?
Read More...const keyword in c#:- Constants are declared with the const modifier. Constants are immutable values which are known at compile time and do not change for the life of the program. Only the C# built-in types (excluding System. Object) may be declared as const.
Read More...Convert DateTime to specific format in c# with example
Convert DateTime to specific format in c# with example
Read More...What is Classes and Objects in c#
What is Classes and Objects in c#:- A class is a user-defined blueprint or prototype from which objects are created, a class combines the fields and methods into a single unit. In C#, classes support polymorphism, inheritance and also provide the concept of derived classes and base classes.
Read More...The Char Data type In C#:- The character or char data type defined within C# is used to hold a single Unicode character. Character variables hold a 16-bit number representing a letter, digit, symbol, or control character. They can also be considered as a numeric data type with similar properties to an unsigned short integer value.
Read More...x64 vs x86- When you run a 32-bit operating system (OS), it is limited to addressing only 4GB (4 gigabytes) of RAM. 64-bit operating systems are capable of addressing up to 256TB (256 terabytes, or 256,000 gigabytes) of RAM.
Read More...stack vs heap- The major difference between Stack memory and heap memory is that the stack is used to store the order of method execution and local variables while the heap memory stores the objects and it uses dynamic memory allocation and deallocation.
Read More...string.concat c# | How to concatenate multiple strings C#
string.concat c#- How to concatenate multiple strings C#
Read More...index of c#- The String.IndexOf() method in C# is used to find the zero-based index of the first occurrence of a specified Unicode character or string within this instance.
Read More...How to split string in c#? The String.Split method creates an array of substrings by splitting the input string based on one or more delimiters.
Read More...How To Convert DateTime To UnixTimeStamp in C#
How To Convert DateTime To UnixTimeStamp in C#
Read More...Exception Handling in C#:- The C# try and catch keywords are used to define a try catch block. A try catch block is placed around code that could throw an exception. If an exception is thrown, this try catch finally blocks will handle the exception to ensure that the application does not cause an unhandled exception.
Read More...Case And Switch Statements In C#
Case And Switch Statements In C#:- the switch statement to select one of many code blocks to be executed.
Read More...Full Form of GPS Global Positioning System
Full Form of GPS - Global Positioning System.
Read More...Byte Struct in C#:- Represents an 8-bit unsigned integer. The Byte is an immutable value type and the range of Byte is from 0 to 255. In C#, Byte Struct is used to represent 8-bit unsigned integers. the byte type also supports the bitwise AND, OR, XOR, left shift, and right shift operators.
Read More...How to convert datatable to generic list c#
How to convert datatable to generic list c#
Read More...c# dictionary get value: The Dictionary is a fast way to remember things. A key (like a string) maps to a value (like an int). Add() inserts keys and values.
Read More...c# extension methods: Extension methods are static methods, which are called as if they were instance methods on the extended type. With Extension methods, you can add methods to existing types without even creating a new derived type, recompiling, or modifying the original type.
Read More...c# tuple- C# tuple is a data structure that is used to store sequence of elements. It can be used where you want to have a data structure to hold an object with properties, but you don't want to create a separate type for it. The Tuple<T> class was introduced in .NET Framework 4.0.
Read More...c# httpclient In this article, you will learn, how to send/receive data through, C# HttpClient class provides a base class for sending/receiving the HTTP requests/responses from a URL. It is a supported async feature of .NET framework. HttpClient is able to process multiple concurrent requests.
Read More...Load multidimensional array to datatable in c#
Load multidimensional array to datatable in c#
Read More...How To Convert DataReader to DataTable and DataSet C#
How To Convert DataReader to DataTable and DataSet C#
Read More...How To Get Data From Excel To DataTable Using ClosedXML C#
How To Get Data From Excel To DataTable Using ClosedXML In C#
Read More...Full Form of DTD - Document Type Declaration
Full Form of DTD - Document Type Declaration.
Read More...Full Form of DHTML - Dynamic Hyper Text Markup Language.
Full Form of DHTML - Dynamic Hyper Text Markup Language.
Read More...BMI calculator with frame size and gender
BMI calculator with frame size and gender, BMI Calculator checks your body mass index (BMI) and finds out if you're a healthy weight. Use this tool now to know you are a healthy weight, overweight
Read More...Encryption and Description using MD5 with C#
Encryption and Description using MD5 with C#
Read More...How to convert DataSet to DataTable In C#?
How to convert DataSet to DataTable In C#
Read More...C# base Keyword:- The base keyword is used in constructors. A derived class constructor is required to call the constructor from its base class.
Read More...How to retrieve Claims Value in .Net Core
How to retrieve Claims Value in .Net Core
Read More...Is GMT same as UTC? So, GMT and UTC share the same current time in practice, there is a basic difference between the two:- GMT is a time zone officially used in some European and African countries. UTC is not a time zone, but a time standard that is the basis for civil time and time zones worldwide.
Read More...Convert a String to a DateTime in C#
Convert a String to a DateTime in C#
Read More...How to convert UTC/GMT time to local time in c#
How to convert UTC/GMT time to local time in c#
Read More...How To send bulk email (mass, multiple email) using c#
How To send bulk email (mass, multiple email) using c#
Read More...How do I display a decimal value to 2 decimal places in c#?
How do I display a decimal value to 2 decimal places in c#?, decimal 2 digit in c#
Read More...Boolean keyword in c#- The bool type keyword is an alias for the .NET System.Boolean structure type that represents a Boolean value, which can be either true or false.
Read More...How to get months between two dates in c#?
How to get months between two dates in c#?, Calculate the number of months between two dates in C#
Read More...Full Form of XHTML - EXtensible HyperText Markup Language
Full Form of XHTML - EXtensible HyperText Markup Language.
Read More...C# HttpClient HEAD request- The HTTP HEAD method requests the headers that are returned if the specified resource would be requested with an HTTP GET method.
Read More...as Keyword in c#- In many cases, we need to convert an Object(Type) into another Object(Type) and sometimes you may get InvalidCastException. So, to overcome such types of exceptions C# provides as operator keyword. This operator returns the object when they are compatible with the given type and returns null if the conversion is not possible instead of throwing an exception. 'as' keyword checks the compatibility of one object type with another object type. In the case of compatibility, it will return the value of the new object type otherwise, null will be returned.
Read More...Full Form of WLAN - Wireless local area network
Full Form of WLAN - Wireless local area network.
Read More...Full Form of WPA - Wi-Fi Protected Access
Full Form of WPA Wi Fi Protected Access
Read More...Full Form of WIFI - Wireless Fidelity
Full Form of WIFI - Wireless Fidelity.
Read More...C# foreach loop (With Example)
C# foreach loop (With Example)- The foreach statement executes a statement or a block of statements for each element in an instance of the type that implements the System.Collections.Generic.IEnumerable<T> or System.Collections.IEnumerable interface
Read More...How to Convert the value of DataTable into an array in c#?
How to Convert the value in DataTable into a string array in c#
Read More...how can i add new row in datatable in c#
how can i add new row in datatable in c#. In this article, You can add a new row in datatable without losing the last row by following method.
Read More...How to convert C# model classes to JSON objects?
How to convert C# model classes to JSON objects?
Read More...C# keywords - C# keywords are predefined, reserved identifiers that have special meanings to the compiler. You cannot use it as a variable name, constant name etc. C# keywords cannot be used as identifiers in your program unless they include @ as a prefix. Contextual keywords in c# have special meaning only in a limited program context and can be used as identifiers outside that context. In General, as new keywords are added to the C# language, they are added as contextual keywords in order to avoid breaking programs written in earlier versions. static keyword in c#, virtual keyword in c#, identifiers in c#, dynamic keyword in c#, using keyword in c#, which is not a keyword in c#, how many keywords in c#, c# keywords pdf
Read More...Full Form of VPI - Virtual Path Identifier
Full Form of VPI - Virtual Path Identifier.
Read More...How To Convert DateTime To Unix TimeStamp in C#
How To Convert DateTime To Unix TimeStamp in C#, c# datetime to unix timestamp milliseconds, unix timestamp to datetime, c# timestamp milliseconds, convert datetime to epoch c#, datetime to timestamp, c# datetime to datetimeoffset, tounixtimeseconds, new datetime from timestamp c#
Read More...Full Form of VIRUS: Vital Information Resources Under Seize
Full Form of VIRUS - Vital Information Resources Under Seize.
Read More...Using statement in c# - The using statement obtains one or more resources, executes a statement, and then disposes of the resource.
Read More...Full Form of UPS - Uninterruptible Power Supply
Full Form of UPS - Uninterruptible Power Supply.
Read More...Full Form of URL - Uniform Resource Locator
Full Form of URL - Uniform Resource Locator.
Read More...Full Form of OOP - Object Oriented Programming
Full Form of OOP - Object Oriented Programming.
Read More...Full Form of .NET - Network Enabled Technologies
Full Form of .NET - Network Enabled Technologies.
Read More...Full Form of HTTPS - Hyper Text Transfer protocol secure
Full Form of HTTPS - Hyper Text Transfer protocol secure.
Read More...Full Form of SDK - Software Development Kit
Full Form of SDK - Software Development Kit.
Read More...Full Form of SQL - Structured Query Language
Full Form of SQL - Structured Query Language.
Read More...Full Form of RAM - Random Access Memory
Full Form of RAM - Random Access Memory.
Read More...Full Form of PNG - Portable Network Graphics
Full Form of PNG - Portable Network Graphics.
Read More...How to convert Datatable to JSON C#
How to convert Datatable to JSON C#: This article explains how to convert DataTable to JSON string in Asp.net C#. ex. serialize DataTable to JSON array in C#. For example, let’s say you have SQL database and now want to return SQL data to JSON in C# application ex. how to return JSON String from DataTable in Asp.net C#. There are 1 ways to achieve this task and that are: By using JavaScriptSerializer, By using Json.Net DLL ( newtonsoft ).
Read More...DateTime format in c# - Change DateTime format in C#
DateTime format in c# - Change DateTime format in C#, Change date format in C#, c# datetime format yyyy-mm-dd
Read More...Full Form of MVC - Model View Controller
Full Form of MVC - Model View Controller.
Read More...Full Form of MTS - Microsoft Transaction Server
Full Form of MTS - Microsoft Transaction Server.
Read More...Full Form of JSON - JavaScript Object Notation
Full Form of JSON - JavaScript Object Notation.
Read More...Convert Date to “dd-MMM-yyyy” format using c#
Convert Date to dd-MMM-yyyy format using c#
Read More...Full Form of XAMPP Cross - Platform (X), Apache (A), MariaDB (M), PHP (P) and Perl (P).
Read More...Full Form of XML - EXtensible Markup Language
Full Form of XML - EXtensible Markup Language.
Read More...Full Form of VBA - Visual Basic for Applications
Full Form of VBA - Visual Basic for Applications.
Read More...Full Form of VGA - Video Graphics Array
Full Form of VGA - Video Graphics Array.
Read More...Full Form of UML - Unified Modeling Language
Full Form of UML - Unified Modeling Language.
Read More...Full Form of SEO - Search Engine Optimization
Full Form of SEO - Search Engine Optimization.
Read More...Full Form of PHP - Hypertext Preprocessor
Full Form of PHP - Hypertext Preprocessor.
Read More...Full Form of PDF - Portable Document Format
Full Form of PDF - Portable Document Format.
Read More...Full Form of JPG - Joint Photographic Experts Group
Full Form of JPG - Joint Photographic Experts Group.
Read More...Full Form of HTTP - Hyper Text Transfer Protocol.
Full Form of HTTP - Hyper Text Transfer Protocol.
Read More...Full Form of GUI - Graphical User Interface
Full Form of GUI - Graphical User Interface.
Read More...Full Form of GPRS - General Packet Radio Service
Full Form of GPRS - General Packet Radio Service.
Read More...Full Form of DOM - Document Object Model.
Full Form of DOM - Document Object Model.
Read More...Full Form of CLI - Common Language Infrastructure
Full Form of CLI - Common Language Infrastructure.
Read More...Full Form of CPU - Central Processing Unit
Full Form of CPU - Central Processing Unit.
Read More...How to capitalize the first character of each word using c#
How to capitalize the first character of each word, or the first character of a whole string using C#?, c# capitalize first letter of sentence, c# check if first letter is uppercase, read second word and change to uppercase in c#, c string to lowercase except first letter, how to make first letter capital in textbox c#, c# totitlecase, unity string capitalize first letter, visual studio capitalize first letter shortcut,
Read More...It is the generic version of the ArrayList that comes under System.Collection.Generic namespace. The List<T> is a collection of strongly typed objects that can be accessed by index and having methods for searching, sorting, and modifying the list.
Read More...How to Convert DataTable to Generic List in C#
How to Convert DataTable to Generic List in C#, Sometimes we need to convert DataTable to generic List. Suppose we want to convert a DataTable (containing data of Employee table) to a generic List of custom data type Employee Model
Read More...convert datatable to anonymous list in c#
convert datatable to anonymous list in c#
Read More...How to subtract a datetime from another datetime?
How to subtract a datetime from another datetime?
Read More...How to convert DataRow[] to List<string[]>
How to convert DataRow[] to List<string[]>
Read More...C# - Automatically close a windows form after 1 minutes
C# - Automatically close a windows form after 1 minutes
Read More...what is the difference between \n and \r\n in c#
what is the difference between \n and \r\n in c#
Read More...Convert DataTable to LINQ Anonymous Type c#
Convert DataTable to LINQ Anonymous Type c#, generic method to convert a datatable to generic list
Read More...Convert datatable to list in c# extension methods
convert datatable to list in c# extension methods, Datatable to List, Convert DataTable to List<T>
Read More...How to convert DataTable to object type List in C#
How to convert DataTable to object type List in C#
Read More...How to run windows Services once a day at define time in C#
Windows Service that runs periodically and once a day at specific time using C#
Read More...How to install and uninstall Windows services using c#
How to install and uninstall Windows services using c#
Read More...How to create a DataTable in C# and how to add rows?
How to create a DataTable in C# and how to add rows?
Read More...How can an int be cast to an enum in C#?
How can an int be cast to an enum in C#?
Read More...How to create a key in the local machine Registry in c#
How to create a key in the system or local machine Registry in c#
Read More...Upload and Display Excel Sheet Data in Gridview in Asp.Net
Upload and Display MS Excel Sheet Data in Gridview Using Asp.Net
Read More...String was not recognized as a valid DateTime format
String was not recognized as a valid DateTime format dd/MM/yyyy
Read More...How to check The connection was not closed in c#
The connection was not closed. The connection's current state is open.
Read More...convert datatable to IEnumerable in c#
convert datatable to IEnumerable in c#. Dataset tables and the data binding requires IEnumerable set. How canm i convert my dataset tables to IEnumerable?
Read More...How does CultureInfo InvariantCulture and DateTime in c#
How does CultureInfo.InvariantCulture and DateTime to String works in c#
Read More...Convert complex hierarchical Datatable to json in c#
Convert complex hierarchical Datatable to json in c#
Read More...Check if dateTime is a weekend or a weekday in c#
Check if dateTime is a weekend or a weekday in c#
Read More...How to Convert DataTable to XML String in Asp.net c#
How to Convert DataTable to XML String in Asp.net c#
Read More...Winform- Deserialize json object from a combobox data
Winform- Deserialize json object from a combobox data (loaded from database)
Read More...How to check alphanumeric password in c#
How to check alphanumeric password in c#
Read More...JSON to C# a Dynamic List<object> or DataTable
JSON to C# a Dynamic List<object> or DataTable
Read More...How to convert month to datatable in asp.net c#
How to convert month to datatable in asp.net c#
Read More...How to Optimize And Upload Image in c#
How to Optimize And Upload Image in c#
Read More...How to get image from Amazon AWS in c#
How to get image from Amazon AWS in c#
Read More...How to convert datatable to list in c#
how to convert datatable to list in c#
Read More...Error event to ignore the exceptions thrown from the invalid date strings.
Read More...How to Export data in Excel in asp.net MVC C#
How to Export data in Excel in asp.net MVC C#
Read More...How to check valid email address in C#
How to check valid email address in C#
Read More...Maximum request length exceeded in asp.net mvc.
Maximum request length exceeded in asp.net mvc.
Read More...Connection string in web.config without authenticate MVC c#
Connection string in web.config without username and password in ASP.NET MVC
Read More...Transaction with commit and rollback in .net in c# example
Transaction with commit and rollback in .net using c# example
Read More...How to send email with attachment from C#
How to send email with attachment from C#, how to send HTML-formatted email?
Read More...