Tutorial by Topics: me

paramdescriptionmodemode to open file, default=w+bdeleteTo delete file on closure, default=Truesuffixfilename suffix, default=''prefixfilename prefix, default='tmp'dirdirname to place tempfile, default=Nonebuffsizedefault=-1, (operating system default used)
Partial classes provides us an option to split classes into multiple parts and in multiple source files. All parts are combined into one single class during compile time. All parts should contain the keyword partial,should be of the same accessibility. All parts should be present in the same assembl...
This topic is to cover the various media types and how they can be used with the canvas in 2D interface. Media types have generic and format specific categories Media types Animations Videos Images HD images Vector image Animated images Media formats Jpg/Jpeg Png Gif SVG M-JPEG...
If you're not opposed to running a Ruby utility, Genghis is a classic: http://genghisapp.com/ But for scalable production use, get yourself to MongoHQ. http://www.mongohq.com/ Also, the Mongo Monitoring Service, from 10Gen, the makers of Mongo: https://mms.mongodb.com/ MongoClient is written ...
public static GameObject Find(string name); public static GameObject FindGameObjectWithTag(string tag); public static GameObject[] FindGameObjectsWithTag(string tag); public static Object FindObjectOfType(Type type); public static Object[] FindObjectsOfType(Type type); Which method to...
Entity Framework (EF) Core is a lightweight and extensible version of the popular Entity Framework data access technology. EF Core is an object-relational mapper (O/RM) that enables .NET developers to work with a database using .NET objects. It eliminates the need for most of the data-access code...
myTimer.Interval - sets how often the "Tick" event is called (in milliseconds) myTimer.Enabled - boolean value that sets the timer to be enabled / disabled myTimer.Start() - Starts the timer. myTimer.Stop() - Stops the timer. If using Visual Studio, Timers can be added as a co...
+x -x a + b a - b a * b a / b a ^ b a % b 4a sqrt(a)
func (t T) exampleOne(i int) (n int) { return i } // this function will receive copy of struct func (t *T) exampleTwo(i int) (n int) { return i } // this method will receive pointer to struct and will be able to modify it

Page 14 of 46