Login
Discover
Waves
Communities
Login
Signup
slawas
@slawas
35
Followers
184
Following
1
Follow
Resource Credits
Available
Used
Created
2018-03-17 08:27
RSS Feed
Subscribe
Posts
Blog
Posts
Comments
Communities
Wallet
slawas
programming
2018-03-20 14:19
C# language: File operations
In this lesson, I will speak a bit about reading and writing files in C # because you will surely write in the future some program in which you will have to save some data, eg a game in which you will
$ 0.000
1
slawas
programming
2018-03-20 10:16
C# language: 16. Dictionary part 2
Let’s finish the previous part of the lesson in C # about dictionaries today, we’ll do a full dictionary I promised in the previous lesson that I will describe more of the dictionary functions, there is
$ 0.000
2
1
slawas
programming
2018-03-20 10:09
C# language: 16. Dictionary part 1
Hi, today as part of the exercises we will do a dictionary project that uses a lot of collections and lists, but the dictionary list in C # looks a bit different, we’ll get to that, but this time we will
slawas
programming
2018-03-20 10:03
C# language: 15. Events and delegates
Delegates are often compared to indicators in functions in C or C ++, while it is necessary to remember about many rules at the pointers, using delegates is much simpler. For example, if you want a user
slawas
programming
2018-03-20 09:57
C# language: 14. Collections and lists
Today about the collections, there are such concepts as a heap or stack, so if you were dealing with an assembler or some other low-level language, then you shouldn’t have no problem understanding this
slawas
programming
2018-03-20 09:36
C# language: 13. Abstract classes
In the lesson on interfaces, I said that I will say about abstract classes, this is the lesson. So what are the abstract classes? As in the case of interfaces, we can not create a class object, but why
slawas
programming
2018-03-20 09:27
C# language: 12. Interfaces
Hi, today we will get to know interfaces. Interfaces So what is interface? The interface is an abstract type so you can not create an object based on it (about abstract classes more in the next lesson).
slawas
programming
2018-03-20 09:22
C# language: 11. Inheritance
Object-oriented programming consists of four main elements, encapsulation, inheritance, polymorphism and abstraction, encapsulate is behind us time to get to with inheritance and polymorphism. 1. What
slawas
programming
2018-03-20 09:12
C# language: 10. Cloning objects
Hi, today I will explain briefly what is the cloning of objects, let me just say it in a nutshell, today I will only say what is more or less the point. There are two types of types in C #, valuable and
slawas
programming
2018-03-20 09:07
C# language: 9. Constructors and destructors
We learned the methods recently, today we will know constructors and destructors. Constructors Constructors were created for convenient initialization of fields in classes, it is as a special method is
slawas
programming
2018-03-20 09:00
C# language: 8. Methods
In the previous lesson, we learned how to encapsulate our code, but we do not know when we should add in our cake from previous lesson those components! That’s why today we will learn the function or the
slawas
programming
2018-03-20 08:49
C# language 7. Fields and properties
Recently, on the previous lesson, we learned what object-oriented programming is, what are classes and objects, today you will learn what fields and properties are, that is, so we will learn one of the
slawas
programming
2018-03-20 08:42
C# language: 6. Classes
Recently we have learnt the basics, it’s time for real object programming. Object-oriented programming involves creating classes and then instances of these classes or objects (hence the name, Object-oriented
slawas
programming
2018-03-19 19:00
C# language: 5. Arrays
In the previous lesson we learn using loops, now we will learn how to save bigger numbers variables, if is a lot of variables, we can save it like this: int a=124; int b=123; int c=12; int d=1265; Or that
slawas
programming
2018-03-19 18:38
C# language: 4. Loops
Today we will learn to use loops in C # there are four types of loops there is one kind of loop that does not have C ++ or C but we will get to this today 🙂 The for loop The for loop can consist of up
slawas
programming
2018-03-19 18:29
C# language: 3. Conditional instructions
In the previous lesson, we learned about operators, today we will learn how to use conditional instructions, but if you used any languages from the C family then you can skip this lesson here you will
slawas
c-sharp
2018-03-19 18:22
C# language: Operators
In the previous lesson, we learned what data types are today, we will learn to add them, multiply etc., in other words do something with them 1. Arithmetic operators We have five basic operators 1. Addition
slawas
c-sharp
2018-03-19 16:29
C# Language: Variables and consts
In variables and constants we store some data on which we can work, but as the name suggests, they differ in that the variables can be changed and the constants no longer. 1. Variables types There are
slawas
unity3e
2018-03-19 12:24
unity3d: 4. Countdown of time
Hi! I will show you today, how to make timing in unity3d. It is really simple, it’s issue few lines. We will can calling button function only each three second. Look on the code below. using UnityEngine;
slawas
unity3d
2018-03-19 12:05
unity3d: 3. Animation on demand
HI !!! I will show you today how to make animation on demand, animation is used in FPS games, when an NPC hasn’t life points, then is executing death animation. Now we will do a different animation
← Latest
Older →