Thanks for the videos. Also thanks for showing your mistakes and explaining everything so well.
@PetDanderTutorials8 жыл бұрын
You're welcome! I'm glad it helped
@Ladidahsera7 жыл бұрын
Mr. Nick, this is pretty cool ! 😎 You get an A+
@PetDanderTutorials7 жыл бұрын
Ladidahsera thanks haha
@Nokenheimer7 жыл бұрын
Idk if this video saved my ass, but hopefully it'll save my ass. Thanks!
@MrAlefantos7 жыл бұрын
TMP PANE AIGAIOU
@TehTeqroo8 жыл бұрын
Great tutorial, very useful for my school project. If I wanted to add a 'remove contact' button, how would I go about doing that?
@ColaMen177 жыл бұрын
Thanks a lot for helping, really useful video.
@ZIANEAdel8 жыл бұрын
thank u for this great video
@landvcn8 жыл бұрын
Thanks for you answer.
@mayanksingh32778 жыл бұрын
nice video
@Borat9566 жыл бұрын
45k views with 1k subs! Sir ur famous
@nitrotech97017 жыл бұрын
great love it
@willyekeu22027 жыл бұрын
awesome
@klasjensgard21777 жыл бұрын
I kind of agree to the previous comment....this might save my ass too as I'm studying C#. Any chance of getting in contact with u since you seem to be the guy to ask questions about C#. Questions concern the making of a membership register protected with a password when u start the program, it shouls also contain a local database of the members and their pets. Would be great if u could help :)
@saikishan14957 жыл бұрын
once I login into the website form with user and password. I want to display welcome "username" in the new page. I cannot able to get the username from the C# identity feature.
@domjanzsoo7 жыл бұрын
Hello , just a quick question: in the read() function of the txt file, you created an array converted from a new Contact object., giving as index the top item of the txt file. How this array contains everything if the object was freshly created? And how is that data sliced, so the elements in the loop are the corresponding to a new Contact object? Probably my questions sound silly, but all I see is an array , which somehow knows what to pick up and how to handle data without any additional code. Can you tell me how to reference to this approach on google or anywhere to read more about the concept? Thank you.
@BRodTutorials8 жыл бұрын
If you are looking for more C# tutorials I am your guy!
@fajans46068 жыл бұрын
what app do you use in programming??
@fajans46068 жыл бұрын
nvm i need an app for javascript programming..... thought you could help..
@BRodTutorials8 жыл бұрын
I use C# in Visual Studio
@najiakhan42178 жыл бұрын
how can i add the merge sort and quick sort in this contact list?
@sultanqureshi27668 жыл бұрын
Sir AT 28.49 when you pressed add contact, in my case nothing happened in the list box
@landvcn8 жыл бұрын
Thanks for the videos.Very good video. I have A question to ask, Why does that write? public Contact() { FirstName = "Tim"; LastName = "li"; Phone = "1111111111"; } public Contact(string firstName, string lastName, string ihone) { FirstName = firstName; LastName = lastName; Phone = phone; }
@PetDanderTutorials8 жыл бұрын
浩秦 李 in object oriented programming, in order to create objects from classes, we need those two methods which are called constructors. one constructor can be used to initialize the object with default values and the other constructor can be used to initialize object with values passed by arguments
@farrukhnaeem44497 жыл бұрын
thanks for video ....i want to apply merge sort in that contact can you gave me code or some kind off stuff which i understand how to apply merge sort in that?