Your teaching skill method is Great its very simple and easy understanding keep going Mukesh bro👍
@MukeshKala11 ай бұрын
Thank you so much 😀
@gopinath-fb9ze Жыл бұрын
Easily understandable...Do and Don'ts of variable datatypes are well explained
@MukeshKala Жыл бұрын
Thank You - Post 2022.10 Updates - you might want to understand the Data Manager to work with variable and Arguments sharing the video for reference - kzbin.info/www/bejne/nqfco5eOga58eMk
@saran67766 Жыл бұрын
Really very helpful and well explained
@MukeshKala Жыл бұрын
Thank you 😊
@shaikjaveed39343 жыл бұрын
Very well explained sir ji. It's easy to learn.
@MukeshKala3 жыл бұрын
Thank you 😊
@rajababumandapati52879 ай бұрын
Hello sir is it possible to create an array using generic value to multiple types of values
@MukeshKala9 ай бұрын
Array of Objects
@dattaveeravalli24462 жыл бұрын
Hi mukesh what is the difference between generic and object? why do we use object in config?
@MukeshKala2 жыл бұрын
Object in Config is used because we are not sure if the value in config would be a string , int , double or boolean etc - Hence we read in Object and later convert. The GenericValue variable is a type of variable that can store any kind of data, including text, numbers, dates, and arrays, and is particular to UiPath Studio.
@yashmahale3721 Жыл бұрын
Hi sir how can we store :- decimal, string, number (int) in same variable
@MukeshKala Жыл бұрын
Object Type
@yashmahale3721 Жыл бұрын
Sir if I have, One of string ("123.45,67.8,9") how to replace (.) By(,) and (,) by(.) In single activity? And how can I save decimal and int in same variable?
@dattaveeravalli24462 жыл бұрын
hi mukesh suppose we hava unique numbers in array like {1,2,5,1,2,5} then how we get output like 1,1 or 2,2 like this can you help me......
@MukeshKala2 жыл бұрын
There could be Multiple ways to achieve this - One way is to use LINQ and group by function. Sharing Link for reference. stackoverflow.com/questions/55899233/group-similar-items-in-list-in-the-same-sequence-in-c-sharp-asp-net
@algeriadz49802 жыл бұрын
Sorry for my simple question, what is the purpose of using "write Line"?
@MukeshKala2 жыл бұрын
Don't Hesitate to ask questions when learning .. Writeline is used during development to print values in the output panel .. we use this to validate and check outputs .. lets say we have read an data from excel and before proceeding - want to know what is data size .. i use Writeline .. These are only restricted to Studio and only project is published - These does not appear on orchestrator. Hope you understand now...
@algeriadz49802 жыл бұрын
Very apparent
@kanikakashyap2929 Жыл бұрын
Sir can u pls tell me why my date of birth is not a valid value for date time ...it causes an error when i put dob
@MukeshKala Жыл бұрын
The Format of the date in not correct - Sharing Some of dates Format // M/d/yyyy // M/d/yy // MM/dd/yy // MM/dd/yyyy // yy/MM/dd // yyyy-MM-dd // dd-MMM-yy