User Tim Jarvis - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T09:47:03Zhttp://stackoverflow.com/feeds/user/10387http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/297037/what-tricks-do-you-use-to-get-yourself-in-the-zone132What tricks do you use to get yourself "in the zone"?Tim Jarvis2008-11-17T21:38:56Z2009-12-16T16:04:20Z
<p>Once I am "in the zone" I am extremely productive and code just flows out of me, often I can get 2 or 3 days coding done in 1 day. But I find that often its hard to get to that place, I find myself procrastinating, getting distracted by other things (SO for example). </p>
<p>Is this experience common? How do you force yourself into that state of mind? Is it simply something you can't force?</p>
http://stackoverflow.com/questions/1726428/how-does-reflector-show-types-when-assembly-gettypes-fails-due-to-a-missing-ref2How does reflector show types when Assembly.GetTypes() fails due to a missing referenced assemblyTim Jarvis2009-11-13T00:44:31Z2009-11-27T13:48:26Z
<p>I have a broken Assembly that I want to reflect over, its not broken badly, it just cannot find a referenced assembly, so it does fail a PEVerify. But....Assembly.LoadFrom() will still load it and GetTypes() will throw a ReflectionTypeLoadException, the .LoaderExceptions array shows me what referenced assembly cannot be found. At this point I am roadblocked.</p>
<p>However, the great little tool Reflector is able to go further and actually display the contained types, and handles gracefully the missing reference issue by giving me a pop-up dialog to browse for it. My question is, How after the GetTypes() fails does reflector manage to get the types anyway?</p>
http://stackoverflow.com/questions/1757341/writing-a-c-desktop-application-that-needs-to-embed-an-encrypted-database-what/1757378#17573781Answer by Tim Jarvis for Writing a C# desktop application that needs to embed an encrypted database. What type of database should I use?Tim Jarvis2009-11-18T16:46:47Z2009-11-18T16:46:47Z<p>From your brief synopsys of how you will be using this and the single user nature of it maybe an RDBMS will be overkill, you could possibly just store your small amount of data in a text/xml file and embed it as a resource in your exe (encrypted if you need to)</p>
http://stackoverflow.com/questions/1597488/client-server-assembly-missing-db4objects-7-40Client Server Assembly Missing? Db4Objects 7.4Tim Jarvis2009-10-20T21:37:52Z2009-11-15T14:00:04Z
<p>I have downloaded the current version of <a href="http://developer.db4o.com/files/folders/db4o%5F74/default.aspx" rel="nofollow">Db4Objects</a> (7.4) and installed it. It appears to be missing the Client Server assembly Db4objects.Db4o.CS.dll</p>
<p>Does anyone know if Client Server has changed with this version? If it has, does anyone have some details about creating a simple Server?</p>
http://stackoverflow.com/questions/1683706/when-are-two-enums-equal-in-c/1683767#16837671Answer by Tim Jarvis for When are two enums equal in C#?Tim Jarvis2009-11-05T21:29:31Z2009-11-05T21:29:31Z<p>To be honest, Equality is not straight forward most of the time. </p>
<p>I would be inclined to create a helper class that implements IEqualityComparer (and any other equality tests, IsSame() for example) and use that. </p>
http://stackoverflow.com/questions/1683648/is-this-a-suitable-or-possible-use-of-hbase/1683716#16837160Answer by Tim Jarvis for Is this a suitable (or possible) use of HBase?Tim Jarvis2009-11-05T21:22:51Z2009-11-05T21:22:51Z<p>Simple answer yes.</p>
<p>More complex answer, right now today these "no sql" datastore's each implement their own programmers interface and as the "no sql" implies they are not SQL based. So be prepared for some coding, none of its difficult though. Mostly these datastores are just name value pair stores, got at via REST or SOAP (HBase also has a concept of Column Families). What they do lend themselves toward though is Map Reduce, a very interesting field of query and well worth reading up on. </p>
http://stackoverflow.com/questions/1678456/how-to-port-delphi-library-to-win-ce/1678611#16786117Answer by Tim Jarvis for How to port delphi library to Win CE?Tim Jarvis2009-11-05T05:55:33Z2009-11-05T05:55:33Z<p>Not much you can do really, Delphi does not support Windows CE.</p>
<p>You might try porting to <a href="http://www.freepascal.org/" rel="nofollow">Free Pascal</a>. That supports a host of OS's including WinCE and a host of platforms including ARM.</p>
http://stackoverflow.com/questions/1677374/delphi-package-systools-i-need-it/1677425#16774252Answer by Tim Jarvis for Delphi Package: Systools - I Need It!Tim Jarvis2009-11-04T23:36:29Z2009-11-04T23:36:29Z<p>Turbo Power released their component suite to the community some time ago, you will probably find the source code for SysTools on SourceForge....in fact let me google.....</p>
<p><a href="http://sourceforge.net/projects/tpsystools/" rel="nofollow">This looks like it...</a></p>
http://stackoverflow.com/questions/1676947/which-orm-should-i-use-instead-of-linq-to-sql/1676989#16769891Answer by Tim Jarvis for Which ORM should I use instead of Linq to Sql?Tim Jarvis2009-11-04T22:04:48Z2009-11-04T22:12:03Z<p>Well my vote would be, before going down the ORM route, check out a fully fledged OODBMS as well.</p>
<p><a href="http://www.db4o.com/" rel="nofollow">db4Objects</a> from Versant is definitely worth a look, its fast, its ridiculously easy to use and its quite Mature. </p>
<p>Edit: Note, db4Objects supports Linq as well.</p>
http://stackoverflow.com/questions/1676766/getting-controls-in-a-winform-to-disable-them/1676952#16769520Answer by Tim Jarvis for Getting controls in a winform to disable them.Tim Jarvis2009-11-04T21:58:42Z2009-11-04T21:58:42Z<p>Just for some fun with linq, because you can.....</p>
<p>What you could do is create a "BatchExecute" extension method for IEnumerable and update all your controls in 1 hit.</p>
<pre><code> public static class BatchExecuteExtension
{
public static void BatchExecute<T>(this IEnumerable<T> list, Action<T> action)
{
foreach (T obj in list)
{
action(obj);
}
}
}
</code></pre>
<p>Then in your code....</p>
<pre><code>this.Controls.Cast<Control>().BatchExecute( c => c.enabled = false);
</code></pre>
<p>Cool.</p>
http://stackoverflow.com/questions/1627526/change-icon-for-a-delphi-console-application/1627594#16275945Answer by Tim Jarvis for Change icon for a Delphi console applicationTim Jarvis2009-10-26T22:03:50Z2009-10-26T22:03:50Z<p>Simply change the Icon in your apps resource file (say your app project is called ConsoleApp.dpr, your app resource file will be ConsoleApp.res)</p>
<p>The main icon resource in there is intuatively called MAINICON, just replace it.</p>
<p>Here is a <a href="http://www.decompile.com/cpp/faq/console%5Ficon.htm" rel="nofollow">step by step</a> for C++ Builder (the steps are basically the same in Delphi)</p>
http://stackoverflow.com/questions/1627225/c-check-object-array-for-duplicates/1627269#16272691Answer by Tim Jarvis for C# Check Object Array For DuplicatesTim Jarvis2009-10-26T20:52:02Z2009-10-26T20:52:02Z<p>What is your definition of duplicate in this case? </p>
<p>If its simply the same object instance (the same pointer) then that's simple, you can use any of the methods in the other answers given here. </p>
<p>Sometimes though the concept of equality is not so straight forward, is a different object instance with the <strong><em>same data</em></strong> equal? In that case you probably want an implementation of an IEqualityComparer to help you.</p>
http://stackoverflow.com/questions/1622202/how-many-newlines-should-a-mono-application-use-between-using-statements-and-t/1622255#16222550Answer by Tim Jarvis for How many newlines should a Mono application use between "using" statements, and the namespace declaration?Tim Jarvis2009-10-25T22:06:27Z2009-10-25T22:06:27Z<p>What is most appealing to you? Use that.</p>
http://stackoverflow.com/questions/1622077/why-use-integers-smaller-than-32bit/1622229#16222292Answer by Tim Jarvis for Why use integers smaller than 32bit ?Tim Jarvis2009-10-25T21:56:54Z2009-10-25T21:56:54Z<p>To be honest memory consumption is probably not the most compelling reason to use small ints (in this example). But there is a general principle at stake that says yes you should use just the memory required for your data structures. </p>
<p>The principle is this, allocate only the width that your data requires and let the compiler find any overflow bugs that may occur, its an additional debugging technique that is very effective. If you <em>know</em> that a value should never exceed a threshold then only allocate up to that threshold.</p>
http://stackoverflow.com/questions/1622129/how-do-closed-source-companies-see-applicants-with-open-source-background/1622190#16221901Answer by Tim Jarvis for How do closed-source companies see applicants with open-source background?Tim Jarvis2009-10-25T21:48:01Z2009-10-25T21:48:01Z<p>Like everything, it depends on context.</p>
<p>For example, where I work if you were active on the MySQL open source project or a contributor on the Linux Kernal you would be considered quite valuable. Not so much on some other lessor known or "dark" project.</p>
http://stackoverflow.com/questions/1597488/client-server-assembly-missing-db4objects-7-4/1597512#15975120Answer by Tim Jarvis for Client Server Assembly Missing? Db4Objects 7.4Tim Jarvis2009-10-20T21:45:02Z2009-10-20T21:45:02Z<p>Doh ! (RTFM)</p>
<p>Ok found it buried in the documention. It has indeed changed....</p>
<p>Page 1140 (of 1318) has the details of creating a DB server.</p>
http://stackoverflow.com/questions/1522621/contractor-billing-hours-for-a-team-dinner/1522644#15226441Answer by Tim Jarvis for contractor - billing hours for a team dinnerTim Jarvis2009-10-05T22:01:05Z2009-10-05T22:01:05Z<p>Not to bill (unless it's during normal working hours and you are required to attend)</p>
http://stackoverflow.com/questions/1502316/how-to-convert-a-generic-list-to-datatable-using-lambda-expression-c/1502376#15023761Answer by Tim Jarvis for How to convert a generic list to datatable using lambda expression (C#)Tim Jarvis2009-10-01T07:21:06Z2009-10-02T05:18:37Z<p>Creating a Datatable dynamically is not hard...</p>
<pre><code>DataTable dt = new DataTable("MyTable");
dt.Columns.Add(new DataColumn("EId", typeof(Int32)));
...
</code></pre>
<p>If you are wanting to do this generically then you will just need to use reflection to grab the properties and types that you are wanting to map, then you just simply populate it from a loop.</p>
<p>I guess the question is, why do you want a Datatable? If you already have a collection of the data you want and its already in BO form why do you want to stuff it back into a DataTable object? Is it to bind to some GUI widget? if so you may just be better off using a BindingSource and setting the List<> as the Datasource of the bindingSource and binding your grid or whatever to the Binding source.</p>
<p>Edit:</p>
<p>There is a MSDN article showing how to do this...<br><br>
<a href="http://msdn.microsoft.com/en-au/library/bb669096.aspx" rel="nofollow">http://msdn.microsoft.com/en-au/library/bb669096.aspx</a></p>
http://stackoverflow.com/questions/1501764/embed-image-into-own-file/1501810#15018103Answer by Tim Jarvis for Embed Image into own fileTim Jarvis2009-10-01T03:50:51Z2009-10-01T05:10:07Z<p>I would probably be inclined just create a block of base64 text in your file that represents the BMP bits.</p>
<p>Edit:</p>
<p>Looks like you are already on the right track here, I find that with these types of conversions, a couple of extension methods are pretty handy...</p>
<pre><code>public static string ToBase64String(this Bitmap bm)
{
MemoryStream s = new MemoryStream();
bm.Save(s, System.Drawing.Imaging.ImageFormat.Bmp);
s.Position = 0;
Byte[] bytes = new Byte[s.Length];
s.Read(bytes, 0, (int)s.Length);
return Convert.ToBase64String(bytes);
}
public static Bitmap ToBitmap(this string s)
{
Byte[] bytes = Convert.FromBase64String(s);
MemoryStream stream = new MemoryStream(bytes);
return new Bitmap(stream);
}
</code></pre>
<p>The format of your text file is no big deal, you just need to be able to index into it for your data, so Xml is a common format, but as I said, its just a case of finding the base64 block that you are after.</p>
http://stackoverflow.com/questions/1501669/notify-changes-on-an-xml-file/1501753#15017530Answer by Tim Jarvis for Notify changes on an XML fileTim Jarvis2009-10-01T03:29:30Z2009-10-01T03:29:30Z<p>It sounds like you are using file IO as a form of interprocess communication, if so, IMO you need to rethink your design, especially if you are doing something "bigger" than google wave (whatever bigger means in this context) as what you are proposing is terribly ineficient.</p>
<p>Do some searching on Interprocess communication and you will get a whole bunch of idea's @foredecker's idea (+1) of shared memory is a good possibility for example.</p>
http://stackoverflow.com/questions/1479452/what-use-cases-exist-for-non-static-private-or-protected-events/1479486#14794865Answer by Tim Jarvis for What use cases exist for non-static private or protected events?Tim Jarvis2009-09-25T20:44:01Z2009-09-25T21:07:08Z<p>Seems to me that a good example of where a private event is useful is in component/control building, often you may have a component that is a composite of 1 or more other components, private events that contained components can subscribe to is a handy and easy implementation of an observer pattern.</p>
<p>Edit:</p>
<p>Let me give an example...</p>
<p>Say you are writing a Grid type control, and inside of this control you would most likely have a bunch of contained classes that are created dynamically Rows, Cols, headers etc for example, say you want to notify these contained classes that something they care about has happend, say a Skinning change or something like that, something that you don't necesarrily want to expose as an event to the grid users, this is where private events are handy, simply have one or 2 handlers and as you create each instance of your row or col or whatever attach the handler, as otherwise you just have to write your own observer mechanism, not hard, but why when you dont have to and you can just use multicast events.</p>
http://stackoverflow.com/questions/9033/hidden-features-of-c/165795#16579513Answer by Tim Jarvis for Hidden Features of C#?Tim Jarvis2008-10-03T05:34:22Z2009-09-12T20:41:45Z<p>The params keyword, i.e.</p>
<pre><code>public void DoSomething(params string[] theStrings)
{
foreach(string s in theStrings)
{
// Something with the Strings…
}
}
</code></pre>
<p>Called like</p>
<pre><code>DoSomething(“The”, “cat”, “sat”, “on”, “the” ,”mat”);
</code></pre>
http://stackoverflow.com/questions/1376328/generic-linq-function-selectmany-with-selection-func-as-a-parameter/1376352#13763521Answer by Tim Jarvis for Generic LINQ function - SelectMany with selection Func as a parameterTim Jarvis2009-09-03T22:44:01Z2009-09-03T22:52:34Z<p>Maybe I am missing what you mean, but simply...</p>
<pre><code>List<String> distinctAnimals = zoo.Animals.Distinct().ToList();
</code></pre>
<p>will do what you are asking, I assume you mean something else?</p>
<p>Edit:
If you have a list of Zoos but want the distinct animals then select many is the correct thing to use, IMO its easier using the linq declarative syntax...</p>
<pre><code>List<String> animals = (from z in zoos
from s in z.Animals
select s).Distinct().ToList();
</code></pre>
http://stackoverflow.com/questions/1366095/game-engine-development-question/1366389#13663890Answer by Tim Jarvis for Game engine development questionTim Jarvis2009-09-02T08:08:51Z2009-09-02T08:08:51Z<p>Sounds to me like you have a pretty good plan for your project. (I get your point about XNA in your comment to @Meeh)</p>
<p>You can interop with C++ via P/Invoke directly or COM, you could also I guess come up with some SOA way of doing it, but to be honest as yucky as this sounds I would be inclined to target COM as your API lever of choice...why? because then you open up your API to a lot of common client language's not just C# and VB.NET you will also get Delphi, VBA, Powerbuilder etc.</p>
<p>Performance should not be a problem as the API entry points are just to kick of the work and transport data structures, the real work is done in your library in native code, so don't worry too much about the perf. ATL will be your friend with creating COM Classes that provide entry to your Library.</p>
http://stackoverflow.com/questions/641015/compiling-mysql-on-windows-with-c-builder1Compiling MySQL on Windows with C++ BuilderTim Jarvis2009-03-13T00:25:01Z2009-08-29T15:56:08Z
<p>Possible? To crazy to contemplate? if yes and no (respectively) any idea how to go about doing this?</p>
http://stackoverflow.com/questions/1343874/using-loops-to-get-at-each-item-in-a-listview/1344121#13441210Answer by Tim Jarvis for Using loops to get at each item in a ListView?Tim Jarvis2009-08-27T22:39:04Z2009-08-27T22:39:04Z<p>If you have .NET 3.5, another and IMO easier way to do what you show above is</p>
<pre><code> var qry = from i in listView1.Items.Cast<ListViewItem>()
from si in i.SubItems.Cast<System.Windows.Forms.ListViewItem.ListViewSubItem>()
select si.Text;
</code></pre>
http://stackoverflow.com/questions/1338870/tough-logic-help-please/1339009#13390090Answer by Tim Jarvis for Tough Logic- Help PleaseTim Jarvis2009-08-27T05:24:02Z2009-08-27T05:24:02Z<p>I think that you are on the wrong track with using mod.</p>
<p>It seems to me that this is a variation to a "greedy algorithm" problem, normaly associated with working out efficient change with coins in homework questions, but I think this seems to be a variant of it.</p>
<p>Wikipedia has a <a href="http://en.wikipedia.org/wiki/Greedy%5Falgorithm" rel="nofollow">page on it</a>, and I am sure googling greedy algorithm will help you out.</p>
http://stackoverflow.com/questions/1325968/first-time-software-contractor-building-a-system-for-a-multi-site-client-who-sh/1326010#13260102Answer by Tim Jarvis for First-time software contractor, building a system for a multi-site client; who should own the intellectual property?Tim Jarvis2009-08-25T04:20:20Z2009-08-27T04:51:07Z<blockquote>
<p>Should I really start talking to a lawyer</p>
</blockquote>
<p>Unfortunately, yes.</p>
<p>Also, do not take legal advice from a programming forum :-)</p>
http://stackoverflow.com/questions/1334248/load-all-xml-file-tags-into-a-dropdownlist/1334506#13345061Answer by Tim Jarvis for Load all XML file Tags into a DropDownListTim Jarvis2009-08-26T13:00:43Z2009-08-26T13:00:43Z<p>Your question is not 100% clear but lets take a shot at it.</p>
<p>Firstly lets create a class that has a ElementName property and an XElement property that overides the ToString() method that we can use to populate the dropdown...</p>
<pre><code> public class displayclass
{
public string ElementName { get; set; }
public XElement Element { get; set; }
public override string ToString()
{
return ElementName;
}
}
</code></pre>
<p>Then we can easily add the Elements into the Combobox with the Element Name as the text, like so</p>
<pre><code>//Some Sample Xml
XElement xe = new XElement("Root",
new XElement("Customer",
new XAttribute("Name", "John Smith"),
new XAttribute("CreditLimit", 1500)),
new XElement("Employee",
new XAttribute("Name", "Fred Nerk")),
new XElement("Employee",
new XAttribute("Name", "Sally Silverton")));
var elemList = from x in xe.Elements()
select new displayclass { ElementName = x.Name.ToString(), Element = x };
foreach (var item in elemList)
{
comboBox1.Items.Add(item);
}
</code></pre>
<p>Now Lets add the count of the Elements into a Text box using a group by clause on our list...</p>
<pre><code> var qry = from dispObj in elemList
group dispObj by dispObj.ElementName;
StringBuilder sb = new StringBuilder();
foreach (var grp in qry)
{
int count = grp.Count();
sb.AppendLine(string.Format("{0}({1})", grp.Key,grp.Count()));
}
textBox1.Text = sb.ToString();
</code></pre>
<p>And finally lets add an event handler to the selected index change event of the Combobox to display the contents of the element...</p>
<pre><code>private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
displayclass disp = comboBox1.SelectedItem as displayclass;
if (disp != null)
{
textBox2.Text = disp.Element.ToString();
}
}
</code></pre>
<p>I think this satisfies your reqs as listed above.</p>
http://stackoverflow.com/questions/1325217/delphi-apps-form-size-varies-on-different-machines/1325259#13252591Answer by Tim Jarvis for Delphi apps, form size varies on different machinesTim Jarvis2009-08-24T23:10:08Z2009-08-25T00:32:15Z<p>Large Fonts versus Small Fonts on the Vista machine maybe?</p>
http://stackoverflow.com/questions/232332/interprocess-communication-in-net/232365#232365Comment by Tim Jarvis on Interprocess communication in .NETTim Jarvis2009-12-04T11:10:27Z2009-12-04T11:10:27ZOf course. Memory Mapped files are designed specifically to be able to share memory between processes. Interestingly, C# 4.0 now has built in MMF classes for just this task.http://stackoverflow.com/questions/1726428/how-does-reflector-show-types-when-assembly-gettypes-fails-due-to-a-missing-ref/1726440#1726440Comment by Tim Jarvis on How does reflector show types when Assembly.GetTypes() fails due to a missing referenced assemblyTim Jarvis2009-11-13T01:22:36Z2009-11-13T01:22:36ZAh, I'll have a look at that. Thanks.http://stackoverflow.com/questions/1726428/how-does-reflector-show-types-when-assembly-gettypes-fails-due-to-a-missing-ref/1726440#1726440Comment by Tim Jarvis on How does reflector show types when Assembly.GetTypes() fails due to a missing referenced assemblyTim Jarvis2009-11-13T00:59:40Z2009-11-13T00:59:40ZThis does not answer the question at all. I am not trying to resolve the assembly, I am wanting to get all the type (names) despite the unresolved reference.http://stackoverflow.com/questions/1683706/when-are-two-enums-equal-in-c/1683735#1683735Comment by Tim Jarvis on When are two enums equal in C#?Tim Jarvis2009-11-05T21:27:21Z2009-11-05T21:27:21Zbe careful here, this is only true if the ordinal position is the same.http://stackoverflow.com/questions/1676947/which-orm-should-i-use-instead-of-linq-to-sql/1676989#1676989Comment by Tim Jarvis on Which ORM should I use instead of Linq to Sql?Tim Jarvis2009-11-04T22:47:13Z2009-11-04T22:47:13ZSomething to be aware of, is that an OODBMS is a very different animal to an RDBMS, because it is Object Oriented, you typically don't need to Join and subquery anywhere near as much as you would in a traditional RDBMS, the Object Model is the Schema...and a good (business app) object model is typically not that deep hierachically. I don't mean this as an Insult, but really, you should take more than a cursory glance at things before you publically dismiss them as a fad or overrated, Versant have been working on this for a looong time.http://stackoverflow.com/questions/1676947/which-orm-should-i-use-instead-of-linq-to-sql/1676989#1676989Comment by Tim Jarvis on Which ORM should I use instead of Linq to Sql?Tim Jarvis2009-11-04T22:11:23Z2009-11-04T22:11:23ZHave you actually tried db4O ? I think you will be very pleasantly surprised, I know I was.http://stackoverflow.com/questions/1627225/c-check-object-array-for-duplicates/1627269#1627269Comment by Tim Jarvis on C# Check Object Array For DuplicatesTim Jarvis2009-10-26T21:26:53Z2009-10-26T21:26:53Zso, you can use the SSD as a key in a dictionary, or for a more complete solution you can implement a IEqualityComparer<T> that you can use in a bunch of linq extension methods.http://stackoverflow.com/questions/1627225/c-check-object-array-for-duplicates/1627269#1627269Comment by Tim Jarvis on C# Check Object Array For DuplicatesTim Jarvis2009-10-26T21:20:17Z2009-10-26T21:20:17ZAh, well in this case you will need to specify the Equality, as a simple comparison of the pointer is not going to tell you that.http://stackoverflow.com/questions/1622446/how-can-i-make-this-regex-match-correctlyComment by Tim Jarvis on How can I make this regex match correctly?Tim Jarvis2009-10-25T23:53:24Z2009-10-25T23:53:24ZWhat about non US urls *.co.uk *.com.au etchttp://stackoverflow.com/questions/1622279/how-to-allow-spaces-in-string-when-searching-for-position-of-substring-in-cComment by Tim Jarvis on How to allow spaces in string when searching for position of substring in C?Tim Jarvis2009-10-25T22:35:04Z2009-10-25T22:35:04Z+1 for asking a Homework question the right way. Don't take to heart the requests for better formatted code, its good advice and not a shot at you personally.http://stackoverflow.com/questions/1590723/flatten-list-in-linq/1590757#1590757Comment by Tim Jarvis on Flatten List in LINQTim Jarvis2009-10-19T19:57:52Z2009-10-19T19:57:52Z+1 for the alternate syntax http://stackoverflow.com/questions/1501764/embed-image-into-own-file/1501810#1501810Comment by Tim Jarvis on Embed Image into own fileTim Jarvis2009-10-01T06:50:11Z2009-10-01T06:50:11ZWould you like a short end to end example? send me an email to <myfirstname>@<mylastname>.com.au and I'll knock something up for youhttp://stackoverflow.com/questions/1501764/embed-image-into-own-file/1501810#1501810Comment by Tim Jarvis on Embed Image into own fileTim Jarvis2009-10-01T06:48:09Z2009-10-01T06:48:09ZSure, as an extension method you would just call it from your Bitmap directly...
string insertThis = myBitmap.ToBase64String();
///file writing code, Xml or just text whatever, just add this string.
http://stackoverflow.com/questions/1501764/embed-image-into-own-file/1501810#1501810Comment by Tim Jarvis on Embed Image into own fileTim Jarvis2009-10-01T05:24:11Z2009-10-01T05:24:11ZSure, ask away.http://stackoverflow.com/questions/1501719/c-issue-with-mutiple-users-trying-to-access-cached-object/1501740#1501740Comment by Tim Jarvis on C# issue with mutiple users trying to access cached objectTim Jarvis2009-10-01T03:34:35Z2009-10-01T03:34:35Zthe downvote (not mine) is a bit harsh though, clearly an oversite