- 108
- 517 142
Ian Schoenrock
United States
เข้าร่วมเมื่อ 19 ต.ค. 2013
I love to write code and make apps. I'm always curious and ready to dive into a new project, and when I'm done, I 'll probably make a video about it. I work Mainly in the Mobile and .NET realm, focusing on ASP.NET Core, Xamarin, and Native Android and iOS, but I'm always trying new languages and technologies so come with me and lets write some code and maybe learn a thing or two while we're at it.
If you need to contact me directly please feel free to email met at *theapphideaway@gmail.com*. Just please mention youtube in the subject bar. Thanks!
If you need to contact me directly please feel free to email met at *theapphideaway@gmail.com*. Just please mention youtube in the subject bar. Thanks!
Twitter Course Part 7: Entity Framework Core and Connecting the API to SQL Server
Here we use Entity Framework Core to connect to our SQL Server and we figure out how to trouble shoot potential issues.
มุมมอง: 529
วีดีโอ
Twitter Course Part 5: Creating the Login Endpoint
มุมมอง 3244 ปีที่แล้ว
In this video we create the login endpoint and talk about how to use postman.
Twitter Course Part 6:Fixing a Database Issue.
มุมมอง 2024 ปีที่แล้ว
We messed up. We forgot to specify a primary key in our database which will give us some trouble later on, so we fix it here.
Twitter Course Part 4: API Introduction to ASP.NET Core
มุมมอง 6374 ปีที่แล้ว
In this video we go over how to create a new API project with ASP.NET Core.
Twitter Course Part 3: SQL Insert and adding data to a table
มุมมอง 2384 ปีที่แล้ว
Here we talk about adding data to our database using the SQL INSERT statement.
Twitter Course Part 2: SQL Server Setup and Creating a Table.
มุมมอง 3334 ปีที่แล้ว
In this video we talk about setting up SQL Server and creating a basic Users table.
Twitter Course Part 1: Introduction
มุมมอง 3424 ปีที่แล้ว
In this video I go over how we are going to tackle making a Twitter Clone and the basic architecture of the application
Announcement: My Next Course
มุมมอง 9424 ปีที่แล้ว
I will be remaking Twitter! We are going to go full stack Microsoft with SQL Server, ASP.NET Core, and Xamarin. We will be using VueJS on the web front end as well. Im super excited about this and I hope you guys are too! Its a huge undertaking for me but I have been wanting to do something like this for a long time so now is the time to do it.
C# Practice 1 Prompt
มุมมอง 3K5 ปีที่แล้ว
In this lesson I go over the prompt for the first practice in this series.
C# Tutorial: String Concatenation
มุมมอง 3.7K5 ปีที่แล้ว
In this lesson I go over string concatenation and how to use it.
C# Tutorial: Do While Loop
มุมมอง 2K5 ปีที่แล้ว
In this lesson I go over do while loops and how to use them.
C# Tutorial: Functions and Return Types
มุมมอง 6K5 ปีที่แล้ว
In this lesson I go over functions and return types and how to use them.
C# Tutorial: Function Parameters
มุมมอง 2.6K5 ปีที่แล้ว
In this lesson I go over function paramters and how to use them.
C# Tutorial: Properties, Getters and Setters
มุมมอง 28K5 ปีที่แล้ว
C# Tutorial: Properties, Getters and Setters
C# Tutorial: Casting and Type Conversion
มุมมอง 3.4K5 ปีที่แล้ว
C# Tutorial: Casting and Type Conversion
C# Tutorial: Value Types Vs Reference Types
มุมมอง 1.9K5 ปีที่แล้ว
C# Tutorial: Value Types Vs Reference Types
C# Tutorial: Async/Await (multi-threading)
มุมมอง 12K5 ปีที่แล้ว
C# Tutorial: Async/Await (multi-threading)
You did not define what a class property is, but thanks for the video.
Why no likes
Thank you alot Lan! Stil best C# vidos after 5 years
👍👍
Love it! Love it. Loved it so much! I enjoyed every bit of your video and really appreciate you giving the efforts to convey such great content for educational purpose
Best explanation ❤
Taught more in 7 mins than my lecturer in an hour.
6:08 6:08 10:57
Thanks for this, coming from C++ I was using the second method or the 'old way' which is why I looked for a video about getters and setters
can you explain about peek() in stack ?
You forgot to explain how event handlers work.....
Makes sense man
Thanks for this video (wasted 5mn of my life) Imma go back to chatgpt 4
can someone please explain why accessing fields the first way is bad or wrong?
Amazing - thank you so much!
I've watched the whole course. Very well explained. Upload more!
Very well explained!
Thank you for this clear explanation!
But how do you create the button itself as an object?
Hi, in your C# list, you promised about OOP tutorial and I can't find it.
saol
hello, grate video.I see that the static class main is the reasen that your pro..Object works.I think is that but Who knows.Sorry for my english. Did you have a video for connecting to project or modules, programes?Thanks
Thank you. Simple and direct solution to get content from API. highly recommanded to beginners.
This is the clean and clarity explanation in all over the youtube
pls sorry for asking, pls why do you used for each
using System; using System.Collections.Generic; using System.Linq; namespace ConsoleApp1 { public class Program { static void Main(string[] args) { Dictionary<string, List<string>> person = new() { {"Kevin", new List<string> {"Coffee", "Tea", "PC"}}, {"Josh", new List<string> {"Coffee", "Tea", "PC"}}, {"Mark", new List<string> {"Coffee", "Tea", "PC"}}, }; person.ToList().ForEach(x => { Console.WriteLine($"{x.Key} {string.Join(", ", x.Value)}"); }); } } }
using System; using System.Collections.Generic; using System.Linq; namespace ConsoleApp1 { internal class Program { static void Main(string[] args) { var myBooks = new List<Book>() { new Book() {Title = "C#", Price = 9.4}, new Book() {Title = "C++", Price = 5.4}, }; var books = from book in myBooks orderby book.Price descending select book; books.ToList().ForEach(book => { Console.WriteLine(book.Title); }); } } class Book { public string Title { get; set; } public double Price { get; set; } } }
using System; using System.Collections.Generic; using System.Linq; namespace ConsoleApp1 { internal class Program { static void Main(string[] args) { var myBooks = new List<Book>() { new Book() {Title = "C#", Price = 9.4}, new Book() {Title = "C++", Price = 5.4}, }; var books = from book in myBooks where book.Title == "C#" select book; books.ToList().ForEach(book => { Console.WriteLine(book.Title); }); } } class Book { public string Title { get; set; } public double Price { get; set; } } }
this is the best explanation
You are in the same class. You do not need to create a new Program object inside of the Program class.
thank you so much. Finishing my diploma with this
C# do while loops-How to find square of every number...HOW? Any tutorials on how to do this? I can only print numbers one through ten.
C# trying to figure out how to find square of every number for a do while loop.
Hello, so I am working on making a simulation of a bus, I have managed to make passengers and make it store them, but I have run into problems now when it comes to making functions for the list of objects. Like for instance if I wanted the user to give a parameter of an age let's say 100-80. And then it returns the passengers that match that age. Can't seem to figure out how to do something like that.
you' re genius, why didn't I find you three hours ago. Thanks, mate
Question, how would you go about printing out only say the second value in the list to the console? Would you do so by index? If so what would be the syntax?
Thank you very much for simplifying this. Love your videos.
thanks, bro very useful can you make more videos like these?❤❤
Thanks for showing what the shorthand is actually doing here.
tnx for quick review
Extemly fast , simple , and just great keep up the great work I loved the video so much that I wrote this coment.
do you know how to make propfull for my variables, variables that i have been created before
your videos are really amazing and you helpt me understand c# .but this time i didn't really get the point of what constructors are?
So we can get default values
Excellent!!
Perfect. Just what I needed. Thanks
Perfect and straightforward. Will watch more. Thanks
Thank you
Really helpful thanks. Easy to understand and quick.
this channel is a hidden gem, i love the no bullshit approach just a short well explained video
Wonderful tutorial! I'm creating a bounty system and I had originally planned to create a list of array's in a similar fashion. I wasn't able to remove the elements in the array which is what led me here. So thank you for fixing my problem!