Remove Header Info from Response in Asp.NET Web API 2
To solve this issue, there are few ways but I used these two; Global.asax.cs I added these lines to remove server and asp.net version in Application_EndRequest blocks. Web.config The other…
To solve this issue, there are few ways but I used these two; Global.asax.cs I added these lines to remove server and asp.net version in Application_EndRequest blocks. Web.config The other…
Hi everyone. Before that, I wrote a post called A Slice of Rust: Working with the Slice Type. Today I’ll try to explain the structs in Rust Before starting,…
Hi everyone. Before that, I wrote a post called Rust’s Borrowing and Reference Laws. Today I’ll try to explain the slice type in Rust Before starting, I’ll create a project…
Hi everyone. Before that, I wrote a post called Ownership Concept in Rust. Today I’ll try to explain some of the features called borrowing and references. I called them laws…
Hi everyone. Before that, I wrote a post called Control Flow Statements in Rust. Today we will see the ownership concept in Rust. Before I get started I have to…
Hi everyone. Before that, I wrote a post called Playing with Functions in Rust. Today I’ll try to explain control flow statements in Rust Before starting, I’ll create a project…
Hi everyone. Before that, I wrote a post called A Trip to Data Types in Rust. Today I’ll try to explain functions in Rust. Before starting, I’ll create a project…
A Trip to Data Types in Rust Hi everyone. Before that, I wrote a post called Understanding Variables and Mutability in Rust. Today we’ll review Data Types in Rust. In…
Hi everyone. Before that, I wrote a post called Getting Started with Rust. Today’s topic is Variables and Mutability. We’ll see how they work in Rust. Introduction Are the thoughts…
Hi everyone! In this post I’ll talk about Rust programming language. Introduction The Rust programming language helps you write faster, more reliable software. High-level ergonomics and low-level control are often…