Visual Studio.NET Category

Regular Expressions Cheat Sheet

Regular Expressions Cheat Sheet

Regular expressions (regex or regexp) provide a concise and flexible means for matching strings of text, for instance particular characters, words, or patterns of characters. A regular expression is written... [More...]

Things You Can Do With String.Format In C#

Things You Can Do With String.Format In C#

Formatting output string with String.Format is really helpful, and it’s been mostly use when you develop application using C# or VB.Net. String.Format firstly released in .NET Framework 1.1. String.Format... [More...]

[HowTo] Make User Defined Function In SQLite ADO.NET With C#

[HowTo] Make User Defined Function In SQLite ADO.NET With C#

Sometime we want to make user defined function and use it in our query to the database. In Ms. SQL Server and Oracle DBMS support user defined function, stored procedure and transactional. Since SQLite... [More...]

[HowTo] Use SqLite ADO.NET with C#

[HowTo] Use SqLite ADO.NET with C#

SQLite is software library written in C that implement self-contained (very minimal support from external libraries), serverless (read/write process directly to database file), cross-platform (run in any... [More...]