Feb 28, 2020

How i do freelancing without skill


Freelance Work That Require No Skillful Skill         Some freelance works that requires no proper experience and not has to learn outside of our daily works just focus on some rear things and you can easily do freelancing..From my respected sir 'Sir Hisham Sawar' some very important tips and works that will bring a positive changes in you career specaially for medical, law and engineering student that want to do freelancing.      ...

THREAD PRIORITY IN MULTITHREADING


C# thread priority C# THREAD PRIORITY  “C# thread priority is the process of setting priority for the threads so that the can execute/perform their task as the priority specified is known as thread priority in multithreading. “ When we perform multithreading inc# then the CPU utilize its resources equally among all the thread and give equal time to execute that threads. Now the problem is if we have two different methods and that are...

Feb 21, 2020

THREAD LOCKING C#


c# thread lock C# THREAD LOCK   “C# thread lock is a process of locking of block of codes or resource to preventing the access of multiple threads for a same resource at a point of time”.      C# thread lock process play very important rule in multithreading ,when multiple user trying to access for a same resources of Data in Data Base System and Web Server System at a time. Syntax of Thread locking  ...

MULTITHREADING JOIN METHOD IN C#


join in multithreading JOIN METHOD IN MULTITHREADING IN C#             “Join is the keyword which is used in multi-threading, when the Main Thread need to stay in program until the child threads does not complete their task”. Syntax of Join method <Thread-instance> Join ( );             In between the brackets you can also specify...

MULTITHREADING IN C#


multitreading in c# MULTITHREADING IN C#             “Multiple threading is a process of using multiple threads in a project to execute different methods separately without waiting for one another”             Basically by default all applications are single threaded model in which only one thread or only main thread executes all...

Feb 7, 2020

APPLICATION EXCEPTION IN C#


applicationexception c# APPLICATION EXCEPTION             “The Type of exception that define by programmer at the programming time for their own project, these exception is not predefined the system libraries these are built by programmer based on their own need.” Steps to Define an Application Exception (Syntax)             There...

Feb 2, 2020

EXCEPTION HANDLING


exception handling EXCEPTION IN C#             “Exception is classes which is responsible for the abnormally terminating of a program due to runtime error.”    We have two type of exception classes that's inherit exception as a base class. which is              1.   System-Exception              2.  ...

ERROR Compile time error, Runtime error


error ERROR             “Error is the mistake that makes a program not function properly”. In programming there are two types of error which can raise during programming that’s are   ð  Compile time error   ð  Runtime err...